body {
    display: flex;
    height: 100vh; 
    font-family: Arial, sans-serif;
    background-color: #131313;
    font-size: 14px;
    color: white;
    margin: 0;

    justify-content: center;
    align-items: center;
    
}

/* Disable blue highlight on mobile buttons/links */
button, a, input, textarea {
    -webkit-tap-highlight-color: transparent; /* Removes tap highlight (Android/iOS) */
    outline: none;                            /* Removes focus outline */
}
  
.signup-container, .login-container {
    background-color: #222222;
    height: fit-content;
    width: 60%;
    max-width: 400px;
    min-width: 200px;
    padding: 40px 30px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.555);
}


input {
    margin-bottom: 8px;
    margin-top: 5px;
    color: white;
    padding: 5px;
    margin-left: 5px;
    border: 0;
    background-color: #131313;
    border-radius: 5px;
}

button {
    border: 0;
    padding: 8px 10px;
    border-radius: 5px;
    color: white;
    background-color: #0a794b;
    margin: 10px 0px 0px 0px;
    font-size: 15px;
}

button:hover {
    background-color: #2b8357;
    cursor: pointer;
}

.eye-img {
    width: 25px;
    height: auto;
}

.toggle-password {
    padding: 2px 2px 0px;
    border-radius: 7px;
    margin: 0 0 5px 8px;
    background-color: transparent;
}

.toggle-password:hover {
    background-color: #383838;
}

#loginForm div {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
#signupForm div {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.country {
    background-color: #131313;
    border: 0;
    padding: 5px;
    color: white;
    border-radius: 5px;
    margin: 5px 0 5px 5px;
}


.landing-btn {
    margin: 0 !important;
    padding: 0 !important;
    background-color: transparent !important;
    border: 0 !important;
}








a {
    color: #3bbd7c;
    text-decoration: none;
}

.logo {
    display: flex;
    justify-content: center;
}

h2 {
    margin-top: 5px;
    font-family: 'Gabarito', sans-serif;
}

img {
    width: 150px;
    height: auto;
}

p {
    font-size: 13px;
    margin-top: 10px;
}

.align {
    display: flex;
    justify-content: end;
}

.doc {
    margin-top: 20px;
    line-height: 1.6;
    font-size: 12px;
}



#loginForm .submit-btn {
    margin-top: 15px;
}

#signupForm .submit-btn {
    margin-top: 20px;
}





/* Modal (background) */
.modal {
    display: none; 
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    
}

/* Modal Content */
.modal-content {
    
    background-color: #1f1f1f;
    margin: auto;
    padding: 20px 40px 30px;
    border: none;
    width: 80%;
    max-width: 300px;
    text-align: center;
    border-radius: 20px;
}

.modal-content p {
    margin-top: 20px;
    font-size: 15px !important; 
    margin-bottom: 10px !important;
}

.modal input {
    font-size: 19px !important;
}

.modal button {
    margin-left: 5px;
    padding: 8px 10px;
    border: none;
    border-radius: 7px;
    color: white;
}


@media (max-width: 450px) {
    .modal-content {
        max-width: 250px;
        padding: 15px 25px 20px;
    }
}

@media (max-width: 400px) {
    .modal-content {
        max-width: 230px;
        padding: 15px 25px 20px;
    }
}

@media (max-width: 350px) {
    .modal-content {
        max-width: 200px;
        padding: 15px 25px 20px;
    }
}









/* forgot password? */



.resetPasswordTitle {
    font-family: 'Gabarito', sans-serif;
    font-size: 18px !important;
    margin: 10px 10px 20px;
}

#forgotPassword {
    color: #3bbd7c;
    font-size: 12px;
    display: block;
    margin-top: 5px;
}

#resetModal input {
    margin: 3px 0;
    padding: 8px;
    font-size: 14px !important;
    border-radius: 5px;
    border: 0;
    background-color: #131313;
    color: white;
}
#resetEmail {
    width: 170px;
}
#resetCode {
    width: 100px;
}
#resetNewPassword {
    width: 150px;
}

.reset-inputs {
    display: flex;
    flex-direction: column;
    justify-content: left;
}

#resetModal button {
    background-color: #0a794b;
    color: white;
    padding: 8px 10px;
    margin-top: 8px;
    border-radius: 5px;
    border: 0;
}

#resetModal button:hover {
    background-color: #2b8357;
    cursor: pointer;
}
.reset-btns {
    margin-top: 10px;
}
.cancel-reset {
    background-color: #2e2e2e !important;
}

.cancel-reset:hover {
    background-color: #3b3b3b !important;
}
.new-password-area {
    display: flex;
    align-items: center;
}
.toggle-password-reset {
    margin: 3px 5px !important;
    padding: 2px 2px 0 !important;
    background-color: transparent !important;
}
.toggle-password-reset:hover {
    background-color: #2e2e2e !important;
}

.loader-screen {
    display: none;
    position: fixed;
    background-color: rgba(19, 19, 19, 0.507);
    width: 100vh;
    height: 100vh;
}
.loader {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}
.content-loader {
    width: 25px;
    height: 25px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #ffffff;
    border-radius: 50%;
    animation: spin 0.3s linear infinite;
    margin-bottom: 10px;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}










/* Webkit Scrollbar */
::-webkit-scrollbar {
    width: 8px;  /* Thin vertical scrollbar */
    height: 8px; /* Thin horizontal scrollbar */
}

::-webkit-scrollbar-track {
    background: transparent;  /* Dark track color */
    border-radius: 10px; /* Rounded corners for the track */
}

::-webkit-scrollbar-thumb {
    background: #555;  /* Dark thumb color */
    border-radius: 10px; /* Rounded corners for the thumb */
    border: 2px solid transparent;  /* Subtle border for better visibility */
}

::-webkit-scrollbar-thumb:hover {
    background: #0c995e;  /* Slightly lighter thumb on hover */
}

/* Optional: Style the corner where horizontal and vertical scrollbars meet */
::-webkit-scrollbar-corner {
    background: #222;
}

