/* Hilangkan panah (spinner) pada input number */
.no-spinner::-webkit-inner-spin-button,
.no-spinner::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.no-spinner {
  -moz-appearance: textfield;
}


body {
    background: url("../../assets/img/background1.jpg") no-repeat center center fixed;
    background-size: cover;
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* Blur + dark overlay */
body::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    z-index: 0;
}

/* Centering card */
.login-container {
    position: relative;
    z-index: 1;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Card style */
.login-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    padding: 2rem;
    width: 100%;
    max-width: 400px;
}

.login-card h4 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

button[type="submit"] {
    width: 100%;
    font-weight: 500;
}
