body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #888;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container, .register-container, .forgot-container, .reset-container {
    background-color: #fff;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 300px;
}

.logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.logo-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    display: inline-block;
    font-size: 13.6px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 1;
}

.logo-title {
    margin-top: 2px;
    font-size: 18px;
    font-weight: 600;
}

.logo-sub-title {
    font-size: 12px;
    margin-top: -2px;
    display: block;
}

/* .general-text {
    padding: 4px 12px;
    font-size: 0.85em;
    color: #666666;
} */
 /* 90% below */
.general-text {
    padding: 3.6px 10.8px;
    font-size: 0.765em;
    color: #666666;
}

/* Input fields */
.input-group {
    text-align: left;
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.input-field {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Buttons and Links */
button {
    background-color: #4c8efb;
    color: white;
    border: none;
    padding: 8px;
    width: 100%;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
}

button:hover {
    background-color: #3b6fd8;
}

button:disabled {
    background-color: #cccccc;
    color: #666666;
    cursor: default;
}

.links {
    /* display: flex;
    justify-content: space-between; */
    margin-top: 10px;
    font-size: 0.9em;
}

.links a {
    text-decoration: none;
    color: #4c8efb;
}

.links a:hover {
    text-decoration: underline;
}

/* Checkbox */
.checkbox-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 0.9em;
    margin-bottom: 20px;
}

.honeypot-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
    visibility: hidden;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 20px;
    width: 60%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    position: relative;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}

.modal-body {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}