* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(' https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSyY4R_KGIscUBYzuIlfsK6IWeN89U8k_QczQ&s');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
}

.login-container {
    width: 400px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    color: #2c3e50;
}

.logo-text {
    font-family: 'Times New Roman', serif;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #b30000;
}

.right-panel h1 {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    color: #b30000;
    margin-bottom: 25px;
}

form label {
    display: block;
    margin: 10px 0 5px;
    font-weight: 600;
    color: #333;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 14px;
}

.password-wrapper {
    position: relative;
}

.eye-icon {
    position: absolute;
    right: 10px;
    top: 8px;
    cursor: pointer;
    font-size: 16px;
    color: #888;
}

.forgot-password {
    display: block;
    margin: -10px 0 15px;
    font-size: 13px;
    color: #b30000;
    text-align: right;
    text-decoration: underline;
}

.role-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    color: #333;
}

    .role-options label {
        display: flex;
        align-items: center;
        gap: 6px;
    }

.error-message {
    color: #ffdddd;
    background-color: #ff4d4d;
    padding: 8px;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 15px;
    text-align: center;
}

.user-btn {
    width: 100%;
    padding: 12px 28px;
    background-color: #b30000;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    font-size: 16px;
    transition: background-color 0.2s ease;
}

    .user-btn:hover {
        background-color: #800000;
    }

.signup-link {
    margin-top: 15px;
    display: block;
    text-align: center;
    font-size: 14px;
}

    .signup-link a {
        color: #b30000;
        font-weight: bold;
        text-decoration: underline;
    }
