body {
     margin: 0;
      width: 100%;
       max-width: 100%;
      
    font-family: 'bubble', sans-serif;
    background-image: url("image/background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #111;

      overflow-x: hidden;
}

@font-face {
    font-family: "bubble";
    src: url("font/Fredoka.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}
/* =========================
   SIGN IN PAGE
========================= */

.signin-container {
    position: relative;

    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 30px 20px;

    box-sizing: border-box;

}



/* =========================
   SIGN IN BOX
========================= */

.signin-box {
    width: 100%;
    max-width: 420px;

    padding: 40px;

    box-sizing: border-box;

    background: #5B7E3C;

    border-radius: 25px;

    border: 3px solid #FFC145;

    box-shadow:
        8px 8px 0 #FFC145;

    text-align: center;
}


/* =========================
   LOGO
========================= */

.signin-logo {
    margin-bottom: 15px;
}

.signin-logo img {
    width: 150px;
    height: auto;
}


/* =========================
   TITLE
========================= */

.signin-box h2 {
    margin: 10px 0 5px;
    letter-spacing: 2px;
    font-family: 'bubble', Arial, sans-serif;

    font-size: 30px;

    color: #7DAACB;
}




/* =========================
   FORM
========================= */

.signin-form {
    display: flex;
    letter-spacing: 2px;
    flex-direction: column;

    text-align: left;
}

.signin-form label {
    margin-bottom: 7px;

    font-family: 'bubble', Arial, sans-serif;

    font-size: 15px;
font-weight: bold;
    color: #7DAACB;
}


/* =========================
   INPUT
========================= */

.signin-form input[type="text"],
.signin-form input[type="password"] {
    width: 100%;

    height: 45px;

    padding: 0 15px;

    box-sizing: border-box;

    margin-bottom: 18px;

    border: 2px solid #ddd;

    border-radius: 25px;

    outline: none;
    letter-spacing: 2px;
    font-family: 'bubble', Arial, sans-serif;

    font-size: 18px;
    font-weight: bold;
    transition: border-color 0.2s ease,
                box-shadow 0.2s ease;
}

.signin-form input[type="text"]:focus,
.signin-form input[type="password"]:focus {
    border-color: #FFC145;

    box-shadow: 0 0 0 3px rgba(236, 232, 82, 0.25);
}


/* =========================
   REMEMBER + FORGOT
========================= */

.signin-options {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin: 0 0 25px;
    letter-spacing: 2px;
    font-family: 'Bubble', sans-serif;
    letter-spacing: 2px;
    font-size: 16px;
}

.remember-me {
    display: flex;
   
    align-items: center;

    gap: 6px;

    margin: 0 !important;

    cursor: pointer;
}

.remember-me span{
    font-size: 15px;
    font-weight: bold;
     color: antiquewhite;
}

.remember-me input {
    width: auto !important;
    height: auto !important;

    margin: 0 !important;
}

.signin-options a {
    color: #2c3e50;

    text-decoration: none;
 font-size: 15px;
    font-weight: bold;
}

.signin-options a:hover {
    text-decoration: underline;
}


/* =========================
   SIGN IN BUTTON
========================= */

.signin-button {
    width: 100%;

    height: 48px;

    border: none;

    border-radius: 25px;

    background: #7DAACB;

    color: #ffffff;

    font-family: 'bubble', Arial, sans-serif;

    letter-spacing: 2px;
    font-size: 20px;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.signin-button:hover {
    transform: translateY(-3px);

    box-shadow: 0 5px 0 #FFC145;
}

.signin-button:active {
    transform: translateY(0);
}


/* =========================
   FOOTER
========================= */

.signin-footer {
    margin: 25px 0 0;

        font-family: 'Bubble', sans-serif;
    letter-spacing: 2px;

    font-size: 12px;

    color: #777;

    line-height: 1.5;
}

.signin-footer a {
    color: #2c3e50;

    font-weight: bold;

    text-decoration: none;
}

.signin-footer a:hover {
    text-decoration: underline;
}

/* =========================
   SIGNIN IMAGE
========================= */
.signin-image {
    width: 150px;
    height: 150px;

    margin: 0 auto 25px;

    border-radius: 50%;
    overflow: hidden;

    background: #f8d9c4;

    display: flex;
    align-items: center;
    justify-content: center;
}

.signin-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}

/* =========================
   BACK BUTTON
========================= */
.back-button {
    position: absolute;

    top: 25px;
    right: 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 18px;

   
    color: #2c3e50;

    border-radius: 10px;

    font-family: 'bubble', sans-serif;
    font-size: 20px;
    text-decoration: none;

    z-index: 100;
    
    transition: all 0.2s ease;
}

.back-button:hover {
    transform: translateY(-2px);
    transform: scale(1.3);
}
/* =========================
   MOBILE
========================= */

@media (max-width: 480px) {

    .signin-container {
        padding: 20px 15px;
    }

    .signin-box {
        padding: 30px 20px;

        border-radius: 20px;

        box-shadow:
            5px 5px 0  #FFC145;
    }

    .signin-box h2 {
        font-size: 25px;
    }

    .signin-options {
        flex-direction: column;

        align-items: flex-start;

        gap: 10px;
    }

}

/* =========================
   FORGOT PASSWORD CONTAINER
========================= */

.forgot-container {
    position: relative;

    width: 100%;
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 30px 20px;

    box-sizing: border-box;

   
}


/* =========================
   FORGOT PASSWORD BOX
========================= */

.forgot-box {
    width: 100%;
    max-width: 420px;

    padding: 40px;

    box-sizing: border-box;

    background:  #5B7E3C;

    border-radius: 25px;

    border: 3px solid #7DAACB;

    box-shadow: 8px 8px 0 #7DAACB;

    text-align: center;
}


/* =========================
   CIRCULAR GIF
========================= */

.forgot-image {
    width: 150px;
    height: 150px;

    margin: 0 auto 25px;

    border-radius: 50%;
    overflow: hidden;

    background: #f8d9c4;

    display: flex;
    align-items: center;
    justify-content: center;
}

.forgot-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}



/* =========================
   TITLE
========================= */

.forgot-box h2 {
    margin: 10px 0 10px;

    font-family: 'bubble', Arial, sans-serif;

    font-size: 30px;
    letter-spacing: 2px;
    color: #FFC145;
}


/* =========================
   DESCRIPTION
========================= */

.forgot-subtitle {
    margin: 0 auto 30px;

    max-width: 300px;
    font-family: 'bubble', sans-serif;
    letter-spacing: 1px;
    font-size: 12px;

      color: #eeeeee;
}


/* =========================
   FORM
========================= */

.forgot-form {
    display: flex;

    flex-direction: column;

    text-align: left;
}


.forgot-form label {
    margin-bottom: 7px;

    font-family: 'bubble', Arial, sans-serif;
    letter-spacing: 2px;
    font-size: 18px;
    font-weight: bold;
      color:  #FFC145;
}


.forgot-form input {
    width: 100%;

    height: 48px;

    padding: 0 15px;

    box-sizing: border-box;

    margin-bottom: 20px;

    border: 2px solid #ddd;

    border-radius: 25px;

    outline: none;

    font-family: 'Bubble', sans-serif;

    letter-spacing: 2px;

    font-size: 18px;

    transition: border-color 0.2s ease,
                box-shadow 0.2s ease;
}


.forgot-form input:focus {
    border-color: #FFC145;

    box-shadow:
        0 0 0 3px rgba(236, 232, 82, 0.25);
}


/* =========================
   RESET BUTTON
========================= */

.reset-button {
    width: 100%;

    height: 48px;

    border: none;

    border-radius: 25px;

    background: #FFC145;

    color: #666;

    font-family: 'bubble', Arial, sans-serif;
    letter-spacing: 2px;
    font-size: 20px;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.reset-button:hover {
    transform: translateY(-3px);

    box-shadow: 0 5px 0 #7DAACB;
}


/* =========================
   BACK TO SIGN IN
========================= */

.back-signin {
    display: inline-block;

    margin-top: 25px;

      color: #FFC145;
    font-family: 'bubble', sans-serif;
    letter-spacing: 2px;
    font-size: 16px;

    font-weight: bold;

    text-decoration: none;
}


.back-signin:hover {
    text-decoration: underline;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 480px) {

    .forgot-container {
        padding: 20px 15px;
    }

    .forgot-box {
        padding: 30px 20px;

        border-radius: 20px;

        box-shadow: 5px 5px 0 #7DAACB;
    }

    .forgot-box h2 {
        font-size: 25px;
    }

    .forgot-image {
        width: 120px;
        height: 120px;
    }

}