body {
    background-color: #065b4c;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Arial', sans-serif;
    flex-direction: column;
}

.login-container {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.login-header h1 {
    font-size: 26px;
    font-weight: bold;
    color: #065b4c;
    margin-bottom: 10px;
}

.login-header p {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 20px;
}

.form-control {
    border-radius: 8px;
}

.btn-primary {
    background-color: #007bff;
    border-radius: 8px;
    padding: 10px;
    font-size: 16px;
}

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

.additional-links {
    margin-top: 15px;
}

.additional-links a {
    font-size: 14px;
    color: #007bff;
    text-decoration: none;
}

.additional-links a:hover {
    text-decoration: underline;
}

.login-img {
    max-width: 80px; height: auto; margin-bottom: 10px;
}

.login-name {
    max-width: 200px; height: auto;
}