/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* BACKGROUND LOGIN */
body.login-page {
    min-height: 100vh;
    background: url('../img/masjid1.jpg') no-repeat center center fixed;
    background-size: cover;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* WRAPPER */
.login-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* BOX LOGIN */
.login-box {
    width: 380px;
    background: #d4a43a;
    padding: 30px 25px;
    border-radius: 28px;
    border: 4px solid #000;
    text-align: center;
}

/* LOGO */
.logo-box img {
    width: 90px;
    margin-bottom: 15px;
}

/* TITLE */
.login-box h1 {
    font-size: 18px;
    margin-bottom: 20px;
}

/* FORM */
.login-box label {
    display: block;
    text-align: left;
    margin-bottom: 4px;
    font-weight: bold;
}

.login-box input {
    width: 100%;
    padding: 10px;
    border-radius: 20px;
    border: 2px solid #000;
    margin-bottom: 12px;
}

/* BUTTON */
.btn-login {
    background: #0b6b2d;
    color: #fff;
    border: none;
    padding: 8px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}

.btn-back {
    display: block;
    margin-top: 10px;
    text-decoration: none;
    color: #000;
    font-weight: bold;
}
