*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    min-height:100vh;
    overflow-x:hidden;
    background:#f5f7fc;
    color:#333;
}


/*LOGIN ==================================================================================== */

.registrasi-notification {
  display: inline-block;
  font-size: 11px;
  background-color: #fae588;
  margin-left: 10px;
  margin-right: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 20px;
  padding-left: 20px;
}

.login-error-notif {
  display: inline-block;
  font-size: 12px;
  color: white;
  background-color: #ff8fa3;
  margin-left: 10px;
  margin-right: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 20px;
  padding-left: 20px;
}

.login-success-notif {
  display: inline-block;
  font-size: 12px;
  color: white;
  background-color: lightseagreen;
  margin-left: 10px;
  margin-right: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 20px;
  padding-left: 20px;
}

/* Container */

.hero-section{
    max-width:1400px;
    margin:auto;
    padding:50px 20px;
}

/* Brand */

.brand-badge{
    display:inline-flex;
    align-items:center;
    background:#ffffff;
    border-radius:50px;
    padding:12px 25px;
    margin-bottom:25px;
    border:1px solid #e9edf5;
    box-shadow:0 4px 15px rgba(0,0,0,.04);
}

.brand-logo{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#ffffff;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    margin-right:15px;
    flex-shrink:0;
}

.logo-img{
    width:100%;
    height:100%;
    object-fit:contain;
}

/* Heading */

.sub-title{
    font-size:18px;
    font-weight:600;
    color:#444;
    margin-bottom:10px;
}

.main-title{
    font-size:40px;
    font-weight:700;
    line-height:1.2;
    color:#2f5de0;
}

.feature-list{
    margin-top:15px;
    color:#6b7280;
    font-size:14px;
}

/* Card Login */

.login-card{
    border:none;
    border-radius:24px;
    overflow:hidden;
    background:#ffffff;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.card-header-custom{
    background:linear-gradient(
        135deg,
        #5f8cff,
        #2f5de0
    );

    color:#fff;
    padding:20px;
}

.header-content{
    display:flex;
    align-items:center;
}

.header-icon{
    font-size:70px;
    margin-right:20px;
    opacity:.95;
}

.header-title{
    font-size:20px;
    font-weight:600;
}

.header-subtitle{
    margin-top:5px;
    opacity:.9;
    font-size:12px;
}

.card-body{
    padding:40px;
}

/* Info Box */

.info-box{
    background:#f8faff;
    border-left:4px solid #4f7cff;
    padding:15px;
    border-radius:12px;
    margin-bottom:25px;
    color:#555;
    line-height:1.7;
}

/* Form */

.form-label{
    font-size:14px;
    font-weight:500;
    color:#444;
}

.form-control-custom{
    height:54px;
    border:1px solid #dfe4f0;
    border-right:none;
    border-radius:12px 0 0 12px !important;
    font-size:15px;
}

.form-control-custom:focus{
    box-shadow:none;
    border-color:#4f7cff;
}

.form-control-custom::placeholder{
    color:#ced4da;
    opacity:1;
}

.input-group-text{
    background:#fff;
    border:1px solid #dfe4f0;
    border-left:none;
    border-radius:0 12px 12px 0 !important;
    color:#6b7280;
}

.input-group:focus-within .input-group-text{
    border-color:#4f7cff;
    color:#4f7cff;
}

.password-toggle{
    cursor:pointer;
    user-select:none;
}

/* Button */

.btn-login{
    height:55px;
    border:none;
    border-radius:12px;
    font-weight:600;
    font-size:16px;

    background:linear-gradient(
        135deg,
        #4f7cff,
        #2956e3
    );
}

.btn-login:hover{
    background:linear-gradient(
        135deg,
        #436ff0,
        #2449c4
    );
}

/* Link */

.forgot-link{
    color:#4f7cff;
    text-decoration:none;
    font-weight:500;
}

.forgot-link:hover{
    color:#2956e3;
}

/* Responsive */

@media(max-width:992px){

    .main-title{
        font-size:42px;
    }

    .sub-title{
        font-size:20px;
    }

}

@media(max-width:768px){

    .hero-section{
        padding:30px 20px;
    }

    .main-title{
        font-size:34px;
    }

    .sub-title{
        font-size:18px;
    }

    .feature-list{
        font-size:15px;
    }

    .header-content{
        display:flex;
        align-items:center;
    }

    .header-icon{
        margin-right:15px;
        flex-shrink:0;
    }

    .header-title{
        font-size:24px;
    }

    .card-body{
        padding:25px;
    }

}

@media(max-width:576px){

    .hero-section{
        padding:20px 15px;
    }

    .brand-badge{
        width:100%;
        justify-content:center;
        text-align:left;
    }

    .main-title{
        font-size:18px;
    }

    .sub-title{
        font-size:12px;
    }

    .feature-list{
        font-size:11px;
    }

    .card-header-custom{
        padding:25px 20px;
    }

    .card-body{
        padding:20px;
    }

    .header-title{
        font-size:16px;
    }

    .header-subtitle{
        font-size:8px;
    }

    .form-control,
    .btn-login{
        height:50px;
    }

}