/* body {
    font-family: Arial, sans-serif;
    background: url('../../assets/img/login_background.png') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
} */

.login-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    color: white;
}

h2 {
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 15px;
    text-align: left;
}

.input-group label {
    display: block;
    font-size: 14px;
}

.input-group input {
    width: 100%;
    padding: 8px;
    border: none;
    border-radius: 5px;
    margin-top: 5px;
}

.options {
    font-size: 12px;
    text-align: left;
    margin-bottom: 15px;
}

.options label {
    display: block;
}

button {
    background: #00ffcc;
    color: black;
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background: #00cc99;
}

p {
    margin-top: 10px;
    font-size: 14px;
}

a {
    color: #00ffcc;
    text-decoration: none;
}
/* Add these styles for the back button */

.back-button {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.back-button:hover {
    background: rgba(0, 0, 0, 0.8);
}

.back-button span {
    font-weight: bold;
}

/* Optional: Styling the login-container to be centered with more margin for the back button */
body {
    font-family: Arial, sans-serif;
    background: url('../../assets/img/login_background.png') no-repeat center center/cover;
    /* background: linear-gradient(135deg, #0a0f1c, #1f2940); */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    position: relative; /* Added to enable absolute positioning for back button */
}

/* Continue with your existing styles... */
