/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body.login-body {
    background: linear-gradient(to right, #4facfe, #00f2fe);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
}

.container {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
}

.forgot-password-btn {
    margin: 20px 0;
    background-color: #ffffff;
    color: #007bff;
    border: 2px solid #007bff;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 25px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.forgot-password-btn i {
    font-size: 18px;
}

.forgot-password-btn:hover {
    background-color: #007bff;
    color: #ffffff;
}

.title {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.subtitle {
    margin-bottom: 30px;
    font-size: 1.2rem;
    opacity: 0.8;
}

.login-options .btn {
    display: inline-block;
    padding: 15px 30px;
    margin: 10px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1rem;
    transition: transform 0.2s, background 0.3s;
    color: white;
}

.main-login {
    background: #007bff;
}
.admin-login {
    background: #ff5722;
}
.coworker-login {
    background: #28a745;
}

.login-options .btn:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Login Page Styling */
body.login-body {
    /* background: linear-gradient(to right, #8e2de2, #4a00e0); */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.form-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    width: 300px;
    text-align: center;
    color: white;
}

.form-container h2 {
    margin-bottom: 20px;
}

.form-container label {
    display: block;
    text-align: left;
    margin-top: 10px;
    font-weight: bold;
    font-size: 0.9rem;
}

.form-container input {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border-radius: 5px;
    border: none;
    outline: none;
}

.btn-submit {
    margin-top: 20px;
    padding: 10px;
    width: 100%;
    border: none;
    border-radius: 5px;
    background: #ff9800;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #e68900;
}

.back-link {
    display: block;
    margin-top: 15px;
    text-decoration: none;
    color: white;
    opacity: 0.8;
    transition: 0.3s;
}

.back-link:hover {
    opacity: 1;
}
