* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f2f2f2;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 400px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    margin-bottom: 40px;
	font-size: 24px;
}

.input-field {
    position: relative;
    margin-bottom: 20px;
}

input {
    width: 100%;
    padding: 10px 10px 5px 10px;
    border: 2px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

input:focus {
    border-color: #2C3776;
}

label {
    position: absolute;
    top: 12px;
    left: 10px;
    font-size: 16px;
    color: #999;
    transition: all 0.3s ease-in-out;
    pointer-events: none;
}

input:focus ~ label,
input:not(:placeholder-shown) ~ label {
    top: -18px;
	left: 0px;
    font-size: 18px;
    color: #2C3776;
}

button {
    width: 100%;
    background-color: #2C3776;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #ff4d00;
}

p, a {
    text-align: center;
    margin-top: 20px;
}

a {
    color: #2C3776;
    text-decoration: none;
}

.logo {
    text-align: center;
    margin-bottom: 20px;
}

.logo img {
    width: 200px;
}

.error {
    background-color: #ff0000;
    color: #ffffff;
    padding: 10px;
    margin: 10px 0;
    text-align: center;
}
