*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:centuruy gothic, sans-serif;
}

body{
    width:100%;
    height:100vh;
    overflow:hidden;
    background:#eef3fa;
}

.container{
    width:100%;
    height:100vh;
    display:flex;
}

/* LEFT */
.left-side{
    width:40%;
    background:#f4f7fb;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:40px;
}

/* CARD */
.login-card{
    width:100%;
    max-width:450px;
    background:white;
    padding:45px;
    border-radius:30px;
    box-shadow:
    0 10px 40px rgba(0,0,0,0.08);
}

/* LOGO */
.logo-box{
    width:90px;
    height:90px;
    border-radius:28px;
    margin:auto;
    background:linear-gradient(
        135deg,
        #2196f3,
        #005eff
    );
    display:flex;
    justify-content:center;
    align-items:center;
    color:white;
    font-size:38px;
    margin-bottom:20px;
}

/* TITLE */
.login-card h1{
    text-align:center;
    color:#0f172a;
    font-size:42px;
    margin-bottom:10px;
}

.subtitle{
    text-align:center;
    color:#64748b;
    margin-bottom:35px;
}


/* ALERT */
.alert{
    padding:14px;

    border-radius:14px;

    margin-bottom:20px;

    text-align:center;

    font-weight:600;
}

.error{
    background:#fee2e2;
    color:#dc2626;
}

.success{
    background:#dcfce7;
    color:#16a34a;
}

/* INPUT */
.input-group{
    margin-bottom:20px;
}

.input-group label{
    display:block;

    margin-bottom:8px;

    font-weight:600;

    color:#1e293b;
}

.input-box{
    display:flex;
    align-items:center;

    border:1px solid #dbeafe;

    border-radius:16px;

    overflow:hidden;

    background:#f8fafc;

    transition:0.3s;
}

.input-box:focus-within{
    border-color:#2196f3;

    box-shadow:
    0 0 0 4px rgba(33,150,243,0.1);
}

.input-box i{
    padding:0 15px;
    color:#64748b;
}

.input-box input{
    width:100%;

    border:none;
    outline:none;

    background:none;

    padding:18px 10px;

    font-size:15px;
}

/* BUTTON */
.btn-login{
    width:100%;

    border:none;

    padding:18px;

    border-radius:16px;

    background:linear-gradient(
        135deg,
        #2196f3,
        #005eff
    );

    color:white;

    font-size:17px;
    font-weight:bold;

    cursor:pointer;

    transition:0.3s;
}

.btn-login:hover{
    transform:translateY(-2px);

    box-shadow:
    0 10px 25px rgba(33,150,243,0.35);
}

/* LOGIN */
.register{
    margin-top:20px;
    text-align:center;
}

.register a{
    color:#2563eb;
    text-decoration:none;
    font-weight:bold;
}

/* RIGHT */
.right-side{
    width:60%;

    background: url('../../../assets/images/BG1.1.png')
    no-repeat center center/cover;

    display:flex;
    justify-content:center;
    align-items:center;
}

/* OVERLAY */
.overlay{
    width:100%;
    height:100%;


    padding:60px;

    color:white;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;
}

/* LOGO */
.logo-desa{
    width:100px;
    height:100px;

    border-radius:50%;

    background:rgba(255,255,255,0.15);

    backdrop-filter:blur(10px);

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:45px;

    margin-bottom:25px;
}

/* TITLE */
.overlay h1{
    font-size:56px;
    margin-bottom:1px;
  color: #0f172a;

}

.overlay p {
  color: #0f172a;
  margin-top: 1px;
  font-size: 24px;
  margin-bottom: 25px;
}

/* FEATURE */
.feature-box {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.feature-card {
  width: 240px;
  background: white;
  border-radius: 28px;
  padding: 22px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-8px);
}

.feature-card i {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  margin: 0 auto 18px;
  background: #eff6ff;
  color: #2563eb;
}

.feature-card h3 {
  font-size: 21px;
  margin-bottom: 12px;
  color: #0f172a;
}

.feature-card p {
  color: #64748b;
  line-height: 1.7;
  font-size: 15px;
}
.feature-card.blue {
  background:white;
}

.feature-card.blue i {
  background: #e8f0ff;
  color: #2563eb;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .overlay h1 {
    font-size: 42px;
  }
  .feature-box {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 950px) {
  .right-side {
    display: none;
  }
  .left-side {
    width: 100%;
  }
}
