body, html {
    height: 100%;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #e6f3ff 0%, #b3d9ff 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 25px rgba(173, 216, 230, 0.3);
    width: 300px;
    text-align: center;
    transition: all 0.3s ease;
}


h2 {
    color: #4a90e2;
    margin-bottom: 30px;
    font-weight: 600;
}

form div {
    margin-bottom: 20px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #5a9bd5;
    font-weight: 300;
}

input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f0f8ff;
}

    input:focus {
        outline: none;
        box-shadow: 0 0 0 2px #4a90e2;
    }

.validation-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #4a90e2 0%, #5a9bd5 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

    button:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
    }

.input-icon {
    position: relative;
}

    .input-icon input {
        padding-left: 40px;
    }

    .input-icon::before {
        content: '';
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
        background-size: cover;
        z-index: 1;
    }
