/* General Reset */
:root {
    --smoky-black1: hsl(0, 0%, 7%);
    --smoky-black2: hsl(240, 2%, 13%);
    --white1: hsl(0, 0%, 100%);
    --gray: hsla(0, 0%, 84%, 0.7);
    --active-icon-bg: #5e6dcd;
    --box-shadow: 0 10px 50px rgba(94, 109, 205, 0.5);
    --border-color: rgba(255, 255, 255, 0.1);

    --eerie-black1: hsl(240, 2%, 13%);
    --eerie-black2: hsl(240, 2%, 12%);
    --eerie-black3: hsl(0, 0%, 7%);
}

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

body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    display: flex;
    height: 100vh;
    width: 100%;
    margin: 0 auto;
}


/* <!-- ALL ABOUT WELCOM SECTION  --> */
.dera {
    width: 50%;
}

.pium {
    color: #fff;
    padding: 50px 100px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    background: var(--smoky-black2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 95%;
}

.welcome-section p {
    font-size: 14px;
}

.green {
    width: 100%;
    height: 5%;
    background: var(--active-icon-bg);
}

h1 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--white1);
    margin-bottom: 30px;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    color: #fff;
}






/* ALL ABOUT LOGIN  */
.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-wrapper {
    position: relative;
    top: 32px;
}

.icon {
    width: 70px;
    height: 70px;
    border: 7px solid #fff;
    background: var(--smoky-black2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 25px;
}

.login-box {
    background: linear-gradient(to bottom, #161783, #9595D3);
    width: 500px;
    padding: 40px;
    padding-top: 70px;
    border-radius: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.password-container {
    position: relative;
    display: flex;
    align-items: center;
}

.password-container input {
    width: 100%;
    padding-right: 40px; /* Space for icon */
}

.password-container i {
    position: absolute;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
    color: gray;
}



.checkbox-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.checkbox-container p{
    font-size: 13px;
    font-weight: 500;
}

label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    color: var(--smoky-black2);
}

input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid var(--white1);
    border-radius: 15px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}


input[type="checkbox"]:checked::after {
    content: "✔";
    color: var(--white1);
    font-size: 10px;
    position: absolute;
    top: 2px;
    left: 5px;
}



.input-field {
    padding: 13px 15px;
    font-size: 15px;
    border: none;
    border-radius: 20px;
    outline: none;
}

.sign-in-button {
    padding: 14px 10px;
    font-size: 15px;
    color: white;
    background-color: var(--smoky-black2);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    margin-top: 10px;
}


.chai{
    display: flex;
    gap: 10px;
}

.no-account {
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
    text-decoration: underline;
    cursor: pointer;
    color: var(--smoky-black2);
    text-decoration: none;
}

.no-account:hover {
    text-decoration: underline;
}

.home {
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
    text-decoration: underline;
    cursor: pointer;
    color: #161783;
    text-decoration: none;
}

.home:hover {
    text-decoration: underline;
}






/* SMALL SCREEN  */
@media (max-width: 1000px) {
    body {
        gap: 3rem;
        display: flex;
        flex-direction: column-reverse;
        height: auto;
        overflow-y: auto;
        width: 100%;
        margin: 0 auto;
    }
    /* ALL WELCOM LOGIN  */
    .dera {
        width: 100%;
    }
    .pium {
        padding: 80px 30px;
        height: auto;
    }
    .green {
        height: 1.50rem;
        background: var(--active-icon-bg);
    }
    h1 {
        font-size: 1.50rem;
        text-align: center;
        margin-bottom: 20px;
    }
    /* p {
        font-size: 17px;
    } */


    /* ALL ABOUT LOGIN  */
    .login-container {
        width: 10%;
        margin: auto;
    }
    .login-box {
        width: 330px;
        padding: 40px 30px;
        padding-top: 70px;
    }

    .no-account,.home{
        font-size: 13px;
    }

}