﻿body {
    background: linear-gradient(135deg, #003366, #005599);
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
}

#account {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.5s ease-out;
    width: 400px;
    max-width: 500px;
    margin: auto;
}

.form-floating input {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 15px;
    font-size: 1rem;
}

.form-floating label {
    color: #555;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #003366, #005599);
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 1.1rem;
    transition: background 0.3s ease;
}

    .btn-primary:hover {
        background: linear-gradient(135deg, #005599, #003366);
    }

a {
    color: #005599;
    text-decoration: none;
    transition: color 0.3s ease;
}

    a:hover {
        color: #003366;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*@media (max-width: 768px) {
    #account {
        padding: 2rem !important;
    }

    .form-floating input {
        padding: 12px !important;
    }
}*/

.icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #555;
}

.form-floating {
    position: relative;
}

    .form-floating input {
        padding-left: 40px;
    }

footer {
    text-align: center;
    margin-top: 20px;
    color: #fff;
}
