/* Global Styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f9fb; /* Background yang lebih netral */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Wrapper untuk mengatur tampilan login */
.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

/* Box login */
.login-box {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 20px;
}

/* Logo Styling */
.logo-container {
    margin-bottom: 20px;
}

.logo {
    max-width: 120px; /* Mengurangi ukuran logo */
    height: auto;
}

/* Title Styling */
h2 {
    color: #0056b3; /* Warna biru lembut */
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Form Styling */
form {
    text-align: left;
}

form input,
.form-control,
.btn-submit {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
    box-sizing: border-box;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

/* Input Focus Effect */
form input:focus,
.form-control:focus,
.btn-submit:hover {
    border-color: #0056b3; /* Biru lebih terang untuk fokus */
    box-shadow: 0 0 8px rgba(0, 86, 179, 0.3);
}

/* Button Styling */
.btn-submit {
    background-color: #0056b3;
    color: white;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-submit:hover {
    background-color: #004085;
}

/* Styling untuk Pesan Kesalahan */
.alert {
    background-color: #f8d7da;
    color: #721c24;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 14px;
}

.alert p {
    margin: 0;
}

/* Padding and Margin */
input, button {
    transition: all 0.3s ease;
    margin-top: 10px;
}

/* Smooth Transition */
input, button {
    transition: all 0.3s ease;
}

input:focus, button:hover {
    transform: scale(1.05);
}
