/* Add your specific styling for the signup page here */
body {
    background: linear-gradient(to bottom, #f5f5f5, #e0e0e0);
}

.signup-container {
    max-width: 400px;
    padding: 40px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 -4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding-right: 60px;
    width: 95%;
    margin: 30px 0px;
    box-sizing: border-box;
}

.signup-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-group {
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
    text-align: left;
}

label {
    font-size: 18px;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid var(--highlight-color);
    border-radius: 5px;
    font-size: 16px;
}

button {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s ease-in-out;
}

button:hover {
    background-color: var(--primary-color-dark);
}

.extra-info {
    font-size: 16px;
    margin-top: 20px;
}

.extra-info a {
    color: var(--highlight-color);
    text-decoration: none;
}

.extra-info a:hover {
    text-decoration: underline;
}
button.disabled{
    background-color: #363636;
    color: white;
    cursor:not-allowed;
}
button.disabled:hover{
    color:#ffffff
}
#requirements-indicator {
    font-size: 14px;
    text-align: left;
    width: 100%;
    margin-bottom: 20px;
}

#requirements-indicator p {
    margin: 5px 0;
    display: flex;
    align-items: center;
}

#requirements-indicator p.valid::before {
    content: '🟢'; /* Green dot */
    margin-right: 5px;
    color: #008000; /* Green color */
}

#requirements-indicator p.invalid::before {
    content: '⚪'; /* Grey dot */
    margin-right: 5px;
    color: #808080; /* Grey color */
}

.banner {
    padding: 10px 25px;
    text-align: center;
    margin-bottom: 15px;
    box-sizing: border-box;
    position: absolute;
    top: 15%;
}

.error {
    background-color: #ffdddd; /* Light red background */
    color: #cc0000; /* Dark red text */
    border: 1px solid #cc0000;
}

.success {
    background-color: #d4edda; /* Light green background */
    color: #155724; /* Dark green text */
    border: 1px solid #155724;
}
.container {
    display: flex;
    align-items: center;
    flex-direction: column;
}