* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, #008cff, #30bced);
}

.container {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 90%;
}

.logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}

h1 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.btn {
    display: block;
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    font-size: 16px;
    color: white;
    background: #FFD93B;  /* New yellow color */
    border: none;
    border-radius: 30px;  /* More rounded corners */
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);  /* Soft shadow */
    transition: 0.3s ease-in-out;
}

.btn:hover {
    background: #e6c034;  /* Slightly darker yellow on hover */
}
.link {
    display: block;
    font-size: 14px;
    color: #555;
    text-decoration: none;
    margin-top: 10px;
    transition: color 0.3s ease-in-out;
}

.link:hover {
    color: #e6c034;  /* Slightly darker yellow on hover */
}
.error-message {
    color: red;
    font-size: 14px;
    margin-top: 5px;
}

