body {
    background: linear-gradient(135deg, #6c757d, #343a40);
    background-size: 400% 400%;
    animation: gradientAnimation 8s ease infinite;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.form-container {
    background: rgba(0, 0, 0, 0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    max-width: 700px;
    width: 100%;
    animation: fadeIn 1s ease;
    position: relative;
    z-index: 1;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
}

.form-control:focus {
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.8);
}

.btn-custom {
    background: #ffc107;
    border: none;
    color: #212529;
    font-size: 1.1rem;
    padding: 8px 20px;
    transition: all 0.3s;
}

.btn-custom:hover {
    background: #e0a800;
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: #ffc107;
    border: 2px solid #ffc107;
    font-size: 1rem;
    padding: 8px 20px;
    margin-left: 10px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #ffc107;
    color: #343a40;
}

.logo {
    display: block;
    margin: 0 auto 20px;
    max-width: 150px;
}

h2 {
    color: #ffc107;
    text-align: center;
    margin-bottom: 30px;
}

.verification-modal {
    background: rgba(0, 0, 0, 0.85);
}

.verification-modal .modal-content {
    background: #1a1a1a;
    border: none;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(255, 193, 7, 0.2);
}

.verification-modal .modal-header {
    border-bottom: 1px solid rgba(255, 193, 7, 0.2);
    padding: 1.5rem;
}

.verification-modal .modal-title {
    color: #ffc107;
    font-size: 1.5rem;
    font-weight: 600;
}

.verification-modal .modal-body {
    padding: 2rem;
}

.verification-text {
    text-align: center;
    color: #fff;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.verification-email {
    color: #ffc107;
    font-weight: 500;
    display: block;
    margin-top: 0.5rem;
}

.code-input-container {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 2rem 0;
}

.code-input {
    width: 45px;
    height: 45px;
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    font-size: 1.5rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    transition: all 0.3s;
}

.code-input:focus {
    border-color: #ffc107;
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.3);
    outline: none;
    background: rgba(255, 255, 255, 0.1);
}

.verification-footer {
    text-align: center;
    padding: 1rem 0;
}

.verification-footer .btn {
    min-width: 120px;
}

footer {
    margin-top: 20px;
    text-align: center;
}

footer p {
    margin: 10px 0;
    color: rgba(255, 255, 255, 0.7);
}

footer a {
    color: #ffc107;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #e0a800;
    text-decoration: underline;
}