
body {
    font-family: 'Arial', sans-serif;
    background-color: #6bbdf3;
    color: #304966; 
    margin: 0;
    padding: 0;
}

.container {
    max-width: 600px;
    margin: 50px auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(120, 161, 214, 0.1);
    border-top: 5px solid #032e66; 
}

h1 {
    text-align: center;
    font-size: 2.5em;
    color: black; 
    font-weight: bold;
    margin-bottom: 30px;
    font-family: 'Georgia', serif;
}

form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

input, select {
    padding: 14px;
    border: 2px solid #155cba; 
    border-radius: 10px;
    font-size: 1rem;
    background-color: #f9f4ff;
    color: #3c6ac0;
    outline: none;
    transition: all 0.3s ease;
}

input:focus, select:focus {
    border-color: #0e68dd;
    box-shadow: 0 0 8px rgba(138, 43, 226, 0.6);
}

button {
    padding: 15px;
    background-color: #5883e0;
    color: white;
    font-size: 1.1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    font-weight: bold;
}

button:hover {
    background-color: #159fba;
    transform: scale(1.05);
}

button:active {
    transform: scale(1);
}

a {
    padding: 12px 20px;
    text-align: center;
    background-color: #159fba;
    color: white;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 8px;
    display: inline-block;
    text-align: center;
    margin-top: 20px;
    transition: background-color 0.3s, transform 0.2s;
}

a:hover {
    background-color: #159fba;
    transform: scale(1.05);
}

a:focus {
    outline: none;
}

.alert {
    color: red;
    font-size: 1.2rem;
    margin-top: 10px;
    text-align: center;
    font-weight: bold;
}

form input, form select {
    transition: transform 0.3s ease;
}

form input:focus, form select:focus {
    transform: scale(1.05);
}