/* Modern Login/Register CSS */
.account-page-wrapper {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 40px 0;
}

.account-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    position: relative;
    padding: 0;
}

.account-header {
    background: #FE980F;
    padding: 30px;
    text-align: center;
    color: white;
}

.account-header h2 {
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 24px;
    color: white;
}

.account-body {
    padding: 40px;
}

.form-group label {
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
}

.form-control {
    height: 45px;
    border-radius: 8px;
    border: 1px solid #eee;
    background: #fdfdfd;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: #FE980F;
    box-shadow: 0 0 0 2px rgba(254, 152, 15, 0.2);
}

.btn-primary-custom {
    background: #FE980F;
    color: white;
    border: none;
    height: 50px;
    border-radius: 25px;
    font-weight: 700;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    margin-top: 20px;
}

.btn-primary-custom:hover {
    background: #e68a0d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(254, 152, 15, 0.3);
}

.account-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #777;
}

.account-footer a {
    color: #FE980F;
    font-weight: 600;
    text-decoration: none;
}

.text-danger {
    font-size: 13px;
    margin-top: 5px;
    display: block;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-up {
    animation-name: fadeInUp;
    animation-duration: 0.6s;
    animation-fill-mode: both;
}