/* Login container styles */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 20px;
}

.login-card {
    width: 100%;
    max-width: 420px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    overflow: hidden;
}

.login-title {
    text-align: center;
    padding: 24px 0;
    margin: 0;
    color: #333;
    font-weight: 600;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.login-body {
    padding: 24px;
}

/* Form element styles */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.2s;
}

.form-control:focus {
    border-color: #4c82e6;
    outline: none;
    box-shadow: 0 0 0 3px rgba(76, 130, 230, 0.2);
}

/* Remember me checkbox */
.remember-me {
    display: flex;
    align-items: center;
}

.checkbox {
    display: flex;
    align-items: center;
}

.form-check-input {
    margin-right: 8px;
}

/* Button styles */
.btn-primary {
    background-color: #4c82e6;
    border-color: #4c82e6;
    color: white;
    font-weight: 600;
    font-size: 16px;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: #3a70d6;
}

.btn-block {
    width: 100%;
    display: block;
}

/* Links styling */
.login-links {
    text-align: center;
    margin-top: 16px;
}

.login-links p {
    margin: 8px 0;
}

.login-links a {
    color: #4c82e6;
    text-decoration: none;
}

.login-links a:hover {
    text-decoration: underline;
}

/* Error messages */
.text-danger {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
}