@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

* {
    margin:0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins, sans-serif;
}

/* ==============================
   GLOBAL BODY
============================== */
body{
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f4f8ff;                /* light soft blue background */
}

/* ==============================
   WRAPPER CARD
============================== */
.wrapper{
    width: 400px;
    background: #ffffff;                /* clean white card */
    border-radius: 12px;
    color: #1a1a1a;                     /* dark modern text */
    padding: 30px 30px 25px;
    margin-top: 40px;
    height: auto;
    box-shadow: 0 4px 20px rgba(0, 55, 255, 0.1); /* soft blue shadow */
}

/* ==============================
   TITLE
============================== */
.wrapper h1{
    font-size: 2rem;
    text-align: center;
    margin-bottom: 24px;
    font-weight: 700;
    color: #0037ff;                     /* primary logo blue */
}

/* ==============================
   INPUT GROUP
============================== */
.wrapper .input-box{
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 18px;
}

.input-box .input-field{
    position: relative;
    width:100%;
    height: 48px;
    background: #eaf2ff;                /* very light blue */
    border-radius: 6px;
    display: flex;
    align-items: center;
}

.input-box .input-field input{
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-size: 16px;
    color: #1a1a1a;
    border-radius: 6px;
    padding: 0 15px 0 40px;
}

.input-box .input-field input::placeholder{
    color: #0037ff;                     /* blue placeholder */
}

/* Input icon */
.input-box .input-field i{
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #0037ff;                     /* blue icon */
}

/* ==============================
   CHECKBOX / REMEMBER LABEL
============================== */
.wrapper label{
    display: block;
    font-size: 14px;
    margin: 10px 0 18px;
    color: #004bbb;                     /* muted blue */
}

.wrapper label input{
    accent-color: #0037ff;              /* blue checkbox */
    margin-right: 7px;
}

/* ==============================
   BUTTON
============================== */
.wrapper .btn{
    width: 100%;
    height: 45px;
    background: linear-gradient(135deg, #0037ff 0%, #00a2ff 100%); /* royal blue → light blue */
    border: none;
    outline: none;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 55, 255, 0.2);
    cursor: pointer;
    font-size: 16px;
    color: #fff;                        /* white text */
    font-weight: 600;
    transition: 0.2s ease-in-out;
}

.wrapper .btn:hover {
    background: linear-gradient(135deg, #00a2ff 0%, #0037ff 100%); /* reverse gradient */
}

/* ==============================
   FOOTER
============================== */
.footer{
    font-size: 15px;
    padding-top: 60px;
    padding-bottom: 30px;
}

.footer p{
    color:#0037ff;                      /* blue footer text */
}

/* ==============================
   RESPONSIVE TEXT
============================== */
body {
     font-size: 16px;
}

@media (max-width: 768px) {
     body {
       font-size: 14px;
     }
}

@media (min-width: 1200px) {
     body {
       font-size: 18px;
     }
}
