/* Centering and background styles for the body */
.login-body {
    background: #242424;
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Arial', sans-serif;
}

/* Styling the card container */
.login-card {
    width: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Styling the form */
.login-form {
    margin-top: 20px;
}

.login-form label {
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.login-form input {
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    width: 100%;
    box-sizing: border-box;
}

.login-form input:focus {
    border-color: #008066;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 255, 140, 0.5);
}

/* Styling the button */
.btn-primary {
    background-color: #008066;
    border: none;
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #004638;
}

/* Title styling */
.card-title {
    font-size: 1.5rem;
    color: #008066;
    font-weight: bold;
    margin-bottom: 20px;
}
