:root {
    --white: #ffffff;
    --black: #000000;
    --gray: #bbbbbb;
    --gray2: #7c7c7c;
    --gray3: #f3f3f3;
    --blue: #042e4d;
    --blue2: #2bc5da;
    --yellow: #dfe221;
}

/* Aurh */
body {
    /* background-image: url('/images/background/BACKKONTUR.jpg'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
}

/* 
body.login-page {
    background-image: url('/images/background/BACKKONTUR.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
}

body.register-page {
    background-image: url('/images/background/BACKKONTUR.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
} */


.auth-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 200vh;
    padding-top: 100px;
    padding-bottom: 100px;
}

.auth-form {
    width: 100%;
    max-width: 500px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: var(--white);
    margin-bottom: 30px;
}

img.img-logo {
    width: 5em;
    margin-bottom: 3px;
}

label.form-label {
    font-size: 14px;
    color: var(--gray2);
}

label.title-form {
    font-size: 14px;
    color: var(--black);
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 5px;
}

.hr-batas {
    height: 0.5vh;
    background-color: var(--yellow);
    margin-bottom: 5px;
}


input.form-control {
    background-color: var(--gray3);
    border: none;
    border-radius: 10px;
}

select.form-select {
    background-color: var(--gray3);
    border: none;
    border-radius: 10px;
}

textarea.form-control {
    background-color: var(--gray3);
    border: none;
    border-radius: 10px;
}

button.btn.btn-auth {
    background-color: var(--blue);
    color: var(--white);
    font-size: 15px;
    font-weight: bold;
    border-radius: 30px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

button.btn.btn-auth:hover {
    background-color: var(--blue2);
    color: var(--white);
    font-size: 15px;
    font-weight: bold;
    border-radius: 30px;
    transition: 0.3s;
    margin-bottom: 20px;
    text-transform: uppercase;
}

p.auth-info {
    font-size: 14px;
    color: var(--gray2);
    text-align: center;
}

a.auth-info {
    font-size: 14px;
    color: var(--blue2);
}

a.auth-info:hover {
    font-size: 14px;
    color: var(--blue);
    transition: 0.3s;
}

/* navigasi footer */
.navigasi-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--black);
    padding: 10px 0;
    margin: 0;
    box-sizing: border-box;
    z-index: 1000;
}

.navigasi-footer img {
    width: 50px;
}
/* end navigasi footer */

/* End Index */
