* {
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 10px;
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: #fff;
}

.container {
    text-align: center;
    background-color: #282828;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 400px;
    position: relative;
}

.logo-container {
    width: 60%;
    margin: 0 auto 20px;
}

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

.input-field {
    margin: 20px 0;
    padding: 10px;
    font-size: 18px;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #1a1a1a;
    color: #fff;
    text-align: center;
}

.submit-button, .resend-link {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 20px 0;
    font-size: 18px;
    border: none;
    border-radius: 5px;
}

.submit-button {
    /*background-color: #007BFF;*/
    /*color: white;*/
    background-color: #0099cc;
    color: white; /* Text color */
    cursor: pointer;
}

.submit-button.transparent {
    background-color: transparent;
    color: #aaa; /* Grayed-out text */
    cursor: not-allowed; /* Prevent clicks */
}

/*.resend-link {*/
/*	background-color: transparent;*/
/*	color: #007BFF;*/
/*	text-decoration: none;*/
/*	text-align: center;*/
/*}*/

.resend-link {
    display: inline-block;
    padding: 10px 15px; /* Adjust padding as per your requirements */
    background-color: #e0e0e0; /* Grey background */
    color: #111; /* Text color */
    border-radius: 5px; /* Rounded corners */
    text-decoration: none; /* Remove underline from the link */
    cursor: pointer;
    transition: background-color 0.3s;
}

.resend-link.disabled {
    cursor: not-allowed;
    background-color: #b0b0b0;
    color: #777; /* Even darker text color for disabled state */
}

#languageSelect {
    position: absolute;
    top: 20px;
    right: 20px;
}

.success-message {
    background-color: #008000; /* green */
    color: white;
    padding: 10px;
    margin: 20px 0;
    text-align: center;
    display: none;
}

.error-message {
    background-color: #ff0000; /* red */
    color: white;
    padding: 10px;
    margin: 20px 0;
    text-align: center;
    display: none;
}

.resend-link.enabled {
    color: #007BFF;
    cursor: pointer;
}

.resend-link {
    color: #999999;
    cursor: default;
}

/* Overlay */
#overlay {
    background: rgba(0, 0, 0, 0.8); /* Black background with 80% opacity */
    position: fixed; /* Fixed positioning to cover whole viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 9999; /* High z-index to ensure the overlay is on top */
}

#overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white; /* White text for contrast */
}

#alert-icon {
    width: 100px;
    height: 100px;
}