* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-image: url("images/background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
}


/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;

    position: relative;
}

/* LOGO */
.logo img {
    height: 45px;
}


/* EXTRA SMALL DEVICES */
@media(max-width:500px) {
    .navbar {
        padding: 15px 20px;
    }

    .logo img {
        height: 40px;
    }
}

/* end navbar */





/* RESET PASSWORD SECTION */
.reset-section {
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* CONTAINER */
.reset-container {
    width: 100%;
    max-width: 420px;
    padding: 20px;
}



/* INPUT GROUP */
.input-group {
    margin-bottom: 40px;
}

/* LABEL */
.input-group label {
    display: block;
    font-size: 24px;
    margin-bottom: 12px;
}

/* INPUT */
.input-group input {
    width: 100%;
    height: 60px;
    border-radius: 40px;
    border: 2px solid #ddd;
    padding: 0 20px;
    font-size: 18px;
    outline: none;
}

/* TITLE IMAGE */
.reset-title {
    text-align: center;
    margin-bottom: 60px;
}

.reset-title img {
    width: 260px;   /* keeps same design size */
    max-width: 100%;
}


/* SEND BUTTON IMAGE */
/* SEND BUTTON IMAGE */
.send-btn {
    width: 100%;
    background: none;
    border: none;

    margin-top: 50px; /* 👈 moved the button slightly upward */

    cursor: pointer;
}

.send-btn img {
    width: 220px;
    max-width: 100%;
    display: block;
    margin: auto;

    transition: transform 0.15s ease;
}

/* HOVER EFFECT */
.send-btn img:hover {
    transform: scale(1.08);
}

/* CLICK EFFECT (grow then shrink) */
.send-btn img:active {
    transform: scale(0.92);
}