body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'JetBrains Mono', monospace;
}

.container {
    display: flex;
    width: 80%;
    height: 80%;
}

.header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.logo {
    position: absolute;
    top: 10px; /* Distance from the top of the page */
    left: 30px; /* Distance from the left side */
    height: 90px;
}

.text-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    padding: 1px;
    text-align: left; /* Center the text horizontally */
}

.sentence {
    font-size: 2em;
    opacity: 0;
    transition: opacity 1s;
}

.show {
    opacity: 1;
}

.login-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7); /* Adjust the alpha value (0.5) for transparency */
    padding: 80px;
    border-radius: 10px;
}

.login-section h2 {
    color: #070909;
    margin-bottom: 30px;
}

.button-group {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.login-button, .forgot-password-button, .return-button, .register-button {
    background-color: #070909;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
}

.login-button:hover, .forgot-password-button:hover, .return-button:hover, .register-button:hover {
    background-color: #28b1ff;
}


.footer {
    color: #070909;
}

.footer a {
    color: #070909;
    text-decoration: none;
    margin: 0 10px;
}

.footer a:hover {
    text-decoration: underline;
}

/* Styles for form elements */

.form-group {
    margin-bottom: 20px;
    color: #070909;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="text"],
input[type="password"] {
    width: 300px;
    padding: 10px;
    border: 1px solid;
    border-radius: 5px;
    color: #1C1A1A;
    border: 2px solid #1C1A1A; /* Adjust the border width and color as needed */
    border-radius: 5px; /* Adjust the border radius as needed */
    font-size: 16px;
    font-family: 'JetBrains Mono', monospace;
}

h1 {
    /* Position */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    /* Size */
    font-size: 2.5rem; /* Adjust the value as needed */

    /* Color */
    color: #28b1ff; /* Adjust the color code as needed */
}

.email-contact {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.email-box {
    background-color: #070909;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1.2rem;
}

.registration_successful {
    color: #000000; /* Set the text color */
    font-family: 'JetBrains Mono', monospace;
    font-size: 18px; /* Set the font size */
    font-weight: bold; /* Optional: make the font bold */
    text-align: center; /* Optional: center the text */
    margin-top: 10px; /* Add some spacing from the top */
}
