@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

 /* ===============  Colors ================*/
    /* ========= Color mode HSL (Hue, Saturation and lightness) ========*/
    :root{
    --hue: 152;
    --first-color:hsl(var(--hue), 24%, 32%) ;
    --first-color-alt:hsl(var(--hue), 24%, 28%);
    --first-color-light:hsl(var(--hue), 29%, 69%) ;
    --first-color-lighten:hsl(var(--hue), 24%, 92%) ;
    --title-color:hsl(var(--hue), 4%, 15%) ;
    --text-color:hsl(var(--hue), 4%, 35%) ;
    --text-color-light:hsl(var(--hue), 4%, 55%) ;
    --body-color:hsl(var(--hue), 0%, 100%);
    --container-color: #fff;
    --box-shadow: -2px 0 4px hsla(var(--hue), 24%, 15%, .1);
    --transition: .3s ;

      /* ================ font and typography ============ */
    /* 0.5rem = 8px | 1rem = 16px*/
    --body-font: 'Poppins', sans-seriff;
    --big-font-size: 2rem ;
    --h1-font-size: 1.5rem ;
    --h2-font-size: 1.25rem ;
    --h3-font-size: 1rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;

    
    /* ================== font weight ===================*/
    --font-medium: 500;
    --font-semi-bold: 600;

     /* ================== margin botto ================ */
    /* 0.5rem = 8px | 1rem = 16px*/
    --mb-0-5: .5rem;
    --mb-0-57: .57rem;
    --mb-0-75: .75rem;
    --mb-1: 1rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;

    /*====================== Z index ================= */
    --z-tooltip: 10 ;
    --z-fixed: 100;

    }
    .nav_logo {
        text-transform: uppercase;
        font-weight: 700;
        letter-spacing: -0.5px;
        display: inline-flex;
        align-items: center;
        column-gap: 0.5rem;
        transition: .3s;
        font-size: 1.25rem;
        color: #3e6553;
        text-decoration: none;
    }
    *{
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        box-sizing: border-box;
        padding: 0;
        margin: 0;
    }

    body{
        background-color: var(--first-color-light);
    }

    .container{
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 90vh;
    }

    .box{
        background: var(--container-color);
        display: flex;
        flex-direction: column;
        padding: 25px 25px;
        border-radius: 0.6rem;
        box-shadow: var(--box-shadow);
        z-index: 999;
    }

    .form-box{
        width:450px;
        margin:0px, 10px;
    }

    .form-box header{
        font-size: var(--h1-font-size);
        font-weight: var(--font-semi-bold);
        padding-bottom: var(--mb-0-75);
        margin-bottom: var(--mb-0-75);
        border-bottom: 1px solid #e6e6e6;
    }

    .form-box form .field{
        display: flex;
        margin-bottom: var(--mb-0-75);
        flex-direction: column;
    }

    .form-box form .input input{
        height: 40px;
        width: 100%;
        font-size: var(--h3-font-size);
        padding: 0px 10px;
        border-radius: 5px;
        border:1px solid #ccc;
        outline: none;

    }

    .btn{
        background-color: var(--first-color);
        height: 35px;
        border: none;
        color: var(--container-color);
        font-size: var(--normal-font-size);
        cursor: pointer;
        transition: var(--transition);
        margin-top: var(--mb-0-75);
        padding: 0px 10px;
    }

    .btn:hover{
        opacity:0.82
    }

    .submit{
        width: 100%;
    }

    .link{
        margin-bottom: var(--mb-0-57);
    }
