/*//////////////////////////////////////////////////////////////////
[ FONT ]*/

@font-face {
  font-family: Poppins-Regular;
  src: url('../fonts/Poppins-Regular.ttf'); 
}

@font-face {
  font-family: Poppins-Medium;
  src: url('../fonts/Poppins-Medium.ttf'); 
}

@font-face {
  font-family: Poppins-Bold;
  src: url('../fonts/Poppins-Bold.ttf'); 
}

@font-face {
  font-family: Poppins-SemiBold;
  src: url('../fonts/Poppins-SemiBold.ttf'); 
}

/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/

* {
    margin: 0px; 
    padding: 0px; 
    box-sizing: border-box;
}

body, html {
    font-family: Poppins-Regular, sans-serif;
    overflow-x: hidden;
    overflow-y: hidden;
    max-width: 100%;
    max-height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), url('../img/bg_sekolah.jpg') no-repeat center center fixed;
    background-size: cover;
}

.box {
    background: linear-gradient(135deg, #2ABB9B 0%, #1D809F 100%);
    min-height: 100vh;
    padding: 60px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    box-shadow: 10px 0 30px rgba(0,0,0,0.05);
}

.col-md-7 .box {
    background: #fff;
    color: #333;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    padding: 50px;
    margin: 50px auto;
    min-height: auto;
    max-width: 500px;
}

.logo{
    margin: 0 auto 30px;
    max-width: 150px;
    display: block;
}

.btn-login{
    border-radius: 8px;
    background-color: #2ABB9B;
    border: none;
    color: #fff;
    width: 100%;
    height: 45px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(42, 187, 155, 0.3);
    transition: all 0.3s ease;
    margin-top: 20px;
}
.btn-login:hover{
    background-color: #1D809F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 128, 159, 0.4);
    color: #fff;
}
.flat{
    border-radius: 8px;
    height: 45px;
    border: 1px solid #e0e0e0;
    background-color: #fcfcfc;
    transition: all 0.3s ease;
}
.flat:focus {
    border-color: #2ABB9B;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(42, 187, 155, 0.15);
    outline: none;
}
.merk{
    margin-top: 20px;
    text-align: center;
    font-size: 24pt;
    font-weight: bold;
    color: #333;
}
.school{
    margin-top: 0;
    text-align: center;
    font-size: 14pt;
    font-weight: 500;
    color: #666;
}

.title-login{
    text-align: center;
    font-size: 22pt;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}
.form-group label {
    font-weight: 500;
    color: #555;
    margin-bottom: 8px;
}


