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

body {
    background: #f2f4f7;
}

/* ── Layout ─────────────────────────────────────────── */
.container {
    min-height: 70vh;
    width: 100vw;
    background: #f2f4f7;
    display: flex;
    justify-content: center;
    align-items: center;          /* vertically center on desktop */
    gap: 100px;
    padding: 40px 16px;
}

/* ── Left Box ───────────────────────────────────────── */
.left-box {
    height: auto;
    width: 100%;
    max-width: 550px;
}

.left-box img {
    height: 110px;
    display: block;
    position: relative;
    left: -30px;
}

.left-box span {
    font-size: 28px;
    font-family: Helvetica, sans-serif;
    display: inline-block;
}

/* ── Right Box ──────────────────────────────────────── */
.right-box {
    width: 100%;
    max-width: 395px;
}

/* ── Form ───────────────────────────────────────────── */
form {
    height: 350px;
    width: 100%;
    background: white;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px,
                rgba(0, 0, 0, 0.23) 0px 6px 6px;
    padding: 10px 0px 24px;
    border-radius: 8px;
}



form .input-email{
    padding: 6px 15px;
}

.input-email input {
    height: 50px;
    width: 100%;
    font-size: 17px;
    padding: 14px 16px;
    outline: none;
    border-radius: 5px;
    border: 1px solid rgba(160, 161, 163, 0.4);
}

.input-email input:focus {
    border: 2px solid #0866ff;
}


/* password */
.pw-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    padding:14px 16px;
}

.pw-wrapper input {
    height: 50px;
    width: 100%;
    font-size: 17px;
    /* padding: 14px 16px; */
    padding: 14px 44px 14px 16px;   
    outline: none;
    border-radius: 5px;
    border: 1px solid rgba(160, 161, 163, 0.4);
    box-sizing: border-box;
}

.pw-wrapper input:focus {
    border: 2px solid #0866ff;
}

.pw-wrapper #eye-icon {
    position: absolute;
    right: 20px;
    font-size: 20px;
    cursor: pointer;
    user-select: none;
}
/* ── Login Button ───────────────────────────────────── */
.login-btn {
    padding: 6px 15px;
}

.login-btn button {
    height: 50px;
    width: 100%;
    background: #0866ff;
    color: white;
    outline: none;
    border-radius: 8px;
    border: 1px solid #0866ff;
    font-size: 20px;
    font-weight: 600;
    padding: 0px 16px;
    cursor: pointer;
}

.login-btn button a {
    text-decoration: none;
    color: white;
}

.login-btn button a:visited {
    color: white;
}

.login-btn button:hover {
    background: rgba(21, 96, 217, 0.945);
}

.login-btn p {
    font-size: 14px;
    font-family: Helvetica, sans-serif;
    color: #0866ff;
    text-align: center;
    margin-top: 16px;
    cursor: pointer;
}

.login-btn p:hover {
    text-decoration: underline;
}

/* ── Divider ────────────────────────────────────────── */
hr {
    position: relative;
    top: 25px;
    background: rgba(160, 161, 163, 0.252);
    border: none;
    height: 1px;
}

/* ── Create Button ──────────────────────────────────── */
.Create-btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: 25px;
    height: 50px;
    width: 60%;
    background: #42b72a;
    color: white;
    outline: none;
    border-radius: 8px;
    border: 1px solid #42b72a;
    font-size: 20px;
    font-weight: 600;
    padding: 0px 16px;
    margin: 0px 20%;
    text-decoration: none;
    font-family: Helvetica, sans-serif;
    cursor: pointer;
}

.Create-btn a:hover {
    background: #379c23;
}

/* ── Helper text below form ─────────────────────────── */
.right-box p {
    text-align: center;
    font-size: 16px;
    font-family: Helvetica, sans-serif;
    margin-top: 30px;
}

.right-box p a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}

.right-box p a:hover {
    text-decoration: underline;
    cursor: pointer;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS  (mobile-first)
   ═══════════════════════════════════════════════════════ */

/* ── Small phones  (≤ 480px) ────────────────────────── */
@media (max-width: 480px) {
    .container {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        padding: 24px 16px;
    }

    .left-box {
        text-align: center;
    }

    .left-box img {
        left: 0;
        margin: 0 auto 8px;
    }

    .left-box span {
        text-align: center;
        font-size: 22px;
    }

    .right-box {
        width: 100%;
        max-width: 100%;
    }

    .Create-btn a {
        width: 80%;
        margin: 0px 10%;
        font-size: 17px;
    }
}

/* ── Tablets portrait  (481px – 768px) ──────────────── */
@media (min-width: 481px) and (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
        gap: 32px;
        padding: 32px 24px;
    }

    .left-box {
        text-align: center;
        max-width: 480px;
    }

    .left-box img {
        left: 0;
        margin: 0 auto 8px;
    }

    .right-box {
        width: 100%;
        max-width: 480px;
    }
}

/* ── Tablets landscape / small laptops  (769px – 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        gap: 40px;
        align-items: center;
        padding: 40px 24px;
    }

    .left-box {
        max-width: 400px;
        margin-top: 0;
    }

    .left-box span {
        font-size: 24px;
    }
}

/* ── Large desktops  (≥ 1440px) ─────────────────────── */
@media (min-width: 1440px) {
    .container {
        gap: 120px;
    }
}