body,
input,
button,
.login-box {
    font-family: 'Inter', sans-serif;
}

body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    height: 100%;
    overflow: hidden;
}

input {
    font-size: 15px;
}

button {
    font-size: 15px;
}

.slider-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transition: background-image 1s ease-in-out;
}

.slider-background::after {
    content: '';
    position: fixed;
    /* dari absolute -> fixed */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
    /* pastikan tidak menutupi login */
}


.slider-controls {
    position: fixed;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 2;
}

.slider-controls button {
    margin-right: 40px;
    background: rgba(255, 255, 255, 0.7);
    border: none;
    font-size: 2rem;
    padding: 5px 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.slider-controls button:hover {
    background: rgba(255, 255, 255, 1);
}

.dots {
    position: fixed;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.dots span {
    display: inline-block;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
}

.dots .active {
    background-color: #717171;
}

.login-box {
    z-index: 10;
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    width: 370px;
    padding: 40px;
    /* DARI 1000px! */
    background-color: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.login-box h2 {
    text-align: center;
    margin-bottom: 20px;
}

.login-box input {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.login-box button {
    width: 100%;
    margin-top: 10px;
    background-color: #0073e6;
    /* biru solid */
    border: none;
    color: white;
    font-size: 15px;
    font-weight: 600;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-box button:hover {
    background-color: #005bb5;
    /* biru lebih gelap saat hover */
    transform: scale(1.02);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.login-box h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.subtext {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    text-align: center;
}


.login-box button:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}


.forgot {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
}

.forgot a {
    color: red;
    font-weight: bold;
    text-decoration: none;
}