@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    height: 100vh;
    background: #f8f8f8;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-box {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    width: 380px;
    padding: 50px 40px;
    text-align: center;
    animation: fadeIn 0.7s ease;
}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(20px);}
    to {opacity: 1; transform: translateY(0);}
}

.login-box img {
    width: 110px;
    margin-bottom: 15px;
}

.login-box h2 {
    color: #222;
    font-weight: 600;
    font-size: 26px;
    margin-bottom: 25px;
}

.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.input-group input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 15px;
    transition: all 0.3s ease;
}

.input-group input:focus {
    border-color: #d93025;
    box-shadow: 0 0 0 3px rgba(217, 48, 37, 0.1);
    outline: none;
}

button {
    width: 100%;
    background: #d93025;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background: #b6251d;
    transform: translateY(-1px);
}

.extra-options {
    margin-top: 25px;
    font-size: 14px;
    color: #555;
}

.extra-options a {
    color: #d93025;
    font-weight: 500;
    text-decoration: none;
}

.extra-options a:hover {
    text-decoration: underline;
}