.login-body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #eeeeee;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.login-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    text-align: center;
}

.login-title {
    font-size: 1.8rem;
    color: #171718;
    margin-bottom: 20px;
}

.login-form .form-group {
    margin-bottom: 15px;
    text-align: left;
}

.login-form label {
    display: block;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 5px;
}

.login-form input {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.login-button {
    background-color: #171718;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.login-button:hover {
    background-color: white;
    color: #171718;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.register-link {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #555;
}

.register-link a {
    color: #0d47a1;
    text-decoration: none;
}

.register-link a:hover {
    text-decoration: underline;
}


.admin-access {
    text-align: center;
    margin-top: 15px;
}

.admin-button {
    display: inline-block;
    padding: 8px 16px;
    background-color: #171718;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.admin-button:hover {
    background-color: #333;
}
