* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    color: #303433;
}

.body2 {
    min-height: 100vh;
    width: 100%;
    /* display: grid;
    grid-template-columns: 1fr 1fr; */
}

div {
    display: flex;
    justify-content: center;
    align-items: center;
}

div.side {
    background: url(/img/img.png) no-repeat;
    background-size: 100% 101%;
}

.side img {
    width: 80%;
    /* position: fixed; */
    max-width: 100%;
    margin-left: 100px;
    margin-top: 10%;
    /* bottom: 0; */
    /* left: 60px; */
}

.login-container {
    max-width: 450px;
    padding: 10px 24px 10px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.linee{
    height: 2px;
    width: 100%;
    background-color: #b4adad;
    flex: 1;
}
.judul {
    text-transform: uppercase;
    font-size: 1.9em;
    font-weight: bold;
    text-align: center;
    letter-spacing: 1px;
}

.separator {
    width: 300px;
    height: 4px;
    border-radius: 5px;
    background-color: #8f5967;
    margin: 14px;
    margin-top: 0px;
}

.welcome-message {
    text-align: center;
    font-size: 1.1em;
    line-height: 28px;
    margin-bottom: 30px;
    color: #696969;
}

.login-formm {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.form-controll {
    width: 100%;
    position: relative;
    margin-bottom: 15px;
}

input,
.buttonn {
    border: none;
    outline: none;
    border-radius: 30px;
    font-size: 1.1em;
}

input {
    width: 100%;
    background: #e6e6e6;
    color: #333;
    letter-spacing: 0.5px;
    padding: 14px 64px;
}
input.regis{
    padding-right: 64px;
    padding-left: 25px;
}

input ~ i {
    position: absolute;
    left: 32px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    transition: color   0.4s;
}

#liatPw{
    cursor: pointer;
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    transition: color   0.4s;
}

input:focus ~ i {
    color: #843bc7;
}
.buatAKun:hover{
    text-decoration: underline !important;
}
button.submitt,
button.guru{
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.4s;
}

button.submitt {
    padding: 12px 64px;
    margin: 10px auto;
    margin-top: 10px;
    background-image: linear-gradient(to right, #9D6574, #CB7250);
}
button.guru {
    padding: 12px 30px;
    margin: auto;
    background-color: #9D6574;
    /* background-image: linear-gradient(to right, #CB7250, #9D6574); */
}
.atauu{
    color: #969393;
    padding: 0 16px;
    text-transform: uppercase;
    font-size: .75rem;
}
button.submitt:hover,
button.buttonn:hover {
    opacity: 0.7;
}
/* No Koneksi */
.noKoneksi {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(34, 31, 31, 0.873); /* Warna latar belakang semi-transparan */
    z-index: 9999;
    opacity: 1;
}

/* ----  Responsiveness   ----  */
@media (max-width: 780px) {

    body {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .side {
        display: none;
    }
    
    .loginSiswa{
        position: fixed ;
        transform: translate(-50%,-50%) ;
        left: 50% ;
        top: 50% ;
    }

    .login-container {
        max-width: 450px;
        padding: 8px 24px 8px 24px;
    }
    
}