/* assets/dist/css/custom-login.css */

html, body {
    height: 100%;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-image: 
        linear-gradient(rgba(30, 85, 170, 0.4), rgba(130, 180, 225, 0.6)), 
        url('../img/background-login.jpg'); /* <-- GANTI GAMBAR DI SINI */
    background-size: cover;
    background-position: center;
}

.login-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 35px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 400px;
    text-align: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #0056b3; /* Biru yang kuat */
    margin-bottom: 15px;
}

.logo .fa-notes-medical {
    margin-right: 8px;
}

.login-box h2 {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.login-box .subtitle {
    color: #666;
    margin-bottom: 25px;
    font-size: 15px;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
}

.input-group input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.input-group input:focus {
    outline: none;
    border-color: #007bff;
}

.btn-primary {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
    margin-top: 20px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

.alert {
    font-size: 14px;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: left;
}
.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}
.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}
/* Style untuk link di bawah form */
.form-links {
    margin-top: 25px;
    font-size: 14px;
    color: #666;
}
.form-links a {
    color: #007bff;
    text-decoration: none;
    transition: text-decoration 0.2s;
}
.form-links a:hover {
    text-decoration: underline;
}
.form-links span {
    margin: 0 10px;
    color: #ccc;
}
/* Style untuk gambar logo di form login */
.login-logo-img {
    max-width: 150px;   /* Atur lebar maksimal logo */
    max-height: 150px;  /* Atur tinggi maksimal logo */
    margin-bottom: 10px; /* Jarak ke tulisan "Selamat Datang" */
}
