/* login.css */
body {
    background: linear-gradient(135deg, #f0f4f8 0%, #d9e2ec 100%);
    font-family: 'Inter', -apple-system, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    width: 380px;
}

.ankur-branding {
    text-align: center;
    margin-bottom: 30px;
}

.home-shape {
    width: 64px;
    height: 64px;
    background: #003366;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #ffd700;
    box-shadow: 0 8px 16px rgba(0, 51, 102, 0.15);
}

.home-shape svg {
    width: 32px;
    height: 32px;
}

h2 {
    margin: 0;
    color: #003366;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: 14px;
    color: #627d98;
    margin-top: 4px;
    font-weight: 500;
}

.message {
    color: #c0392b;
    font-size: 14px;
    text-align: center;
    margin-bottom: 20px;
}

.success {
    color: #27ae60;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 14px;
    margin-top: 15px;
    border: 1.5px solid #d9e2ec;
    border-radius: 12px;
    font-size: 15px;
    box-sizing: border-box;
    transition: all 0.2s ease;
    background: #f8fafc;
}

input:focus {
    outline: none;
    border-color: #003366;
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 51, 102, 0.05);
}

.checkbox {
    margin-top: 20px;
    display: flex;
    align-items: center;
    color: #486581;
    font-size: 14px;
    font-weight: 500;
}

.checkbox input {
    margin-right: 8px;
    cursor: pointer;
}

button {
    width: 100%;
    margin-top: 25px;
    padding: 14px;
    background-color: #003366;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background-color: #002244;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 51, 102, 0.2);
}

button:active {
    transform: translateY(0);
}