/* Authentication
----------------------------------------------------------------- */
.password-tips-container {
    display: flex;
    justify-content: space-between;
}

.password-tips-column {
    display: flex;
    flex-direction: column;
}

.password-tip {
    color: red;
    font-size: 10px;
    font-weight: 500;
    display: flex;
    align-items: center;
    margin: 0;
}

.password-status-icon {
    width: 10px;
    height: 10px;
    margin-right: 5px;
}

.password-tip.valid {
    color: green;
}

#get-started-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    display: none; 
    z-index: 1000;
}

#signin-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    display: none; 
    z-index: 1000;
}

#create-account-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    display: none; 
    z-index: 1000;
}

#verify-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    display: none; 
    z-index: 1000;
}

#welcome-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    display: none; 
    z-index: 1000;
}

.verification-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    max-width: 400px;
    width: 100%;
    text-align: left;
}

.verification-container h2 {
    margin-bottom: 1rem;
    font-weight: 450;
}

.verification-container p {
    color: #666;
    margin-bottom: 1.5rem;
}

.verification-container input[type="text"] {
    width: 2rem;
    height: 2rem;
    text-align: center;
    font-size: 1.5rem;
    margin: 0 0.2rem;
    border: 1px solid #ddd;
    border-radius: 15px;
}

.verification-container input[type="text"].error {
    border-color: red;
}

.verification-container .error-message {
    color: red;
    margin-top: 1rem;
    display: none;
}

.verification-container .success-message {
    color: green;
    margin-top: 1rem;
    display: none;
}

.verification-container .resend-link {
    margin-top: 1rem;
    display: block;
    color: #007bff;
    text-decoration: none;
}

.verification-container .resend-link:hover {
    text-decoration: underline;
}

.input-group {
    display: flex;
    justify-content: center;
    align-items: center;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none; 
    z-index: 999;
}

.error-message {
    color: var(--font-color-1);
    font-weight: 400;
    margin-top: 20px;
    text-align: center;
    padding-top: 50px;
}

.error-message a{
    color: var(--btn-color-1);
    font-weight: 400;
    margin-top: 20px;
    text-decoration: none;
}
