/* Email Verification Styles */
:root {
    --background: transparent;
    --white: transparent;
}

#verifyEmailFormCenter * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#verifyEmailFormCenter {
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
}

.verification-container {
    background: var(--white);
    border-radius: 12px;
    max-width: 400px;
    padding: 35px 0 10px 0;
    text-align: center;
    position: relative;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}

#verifyEmailFormCenter .verification-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: url('../images/verifyEmail.png') no-repeat center center;
    background-size: contain;
}

#verifyEmailFormCenter .loading-spinner {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    vertical-align: middle;
    background-size: contain;
}

#verifyEmailFormCenter h1 {
    color: #FFFFFF;
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 600;
}

#verifyEmailFormCenter .status-message {
    font-size: 16px;
    color: #dddddd;
}

#verifyEmailFormCenter .success {
    color: #2ecc71;
}

#verifyEmailFormCenter .error {
    color: #e74c3c;
}

#verifyEmailFormCenter .action-text {
    margin-top: 35px;
    color: #dddddd;
    font-size: 16px;
}
