* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: none !important;
}

body, html {
    width: 100%;
    height: 100%;

}
.plus-jakarta-sans-uniquifier {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
  }
.forgotcon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; 
    padding: 10px;
    background-color: #f5f5f5; 
}
.forgot {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%; 
    height: auto;
    max-width: 390px;
    padding: 30px;
    border: 1px solid black;
    background-color: #fff;
    border-radius: 10px; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.forgot h2 {
    font-size: 28px; 
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
}
.forgot input {
    width: 100%;
    height: 55px; 
    padding: 12px;
    font-size: 20px;
    font-weight: 500; 
    border: 1px solid #ccc;
    border-radius: 5px;
}
.reset {
    width: 100%;
    height: 65px;
    padding: 12px;
    font-size: 22px; 
    font-weight: bold;
    background-color: #ff0000;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
}

@media (max-width: 390px) {
    .forgot {
        padding: 20px;
    }

    .forgot h2 {
        font-size: 26px;
    }

    .forgot input {
        font-size: 18px;
        height: 50px; 
    }

    .reset {
        font-size: 20px; 
        height: 60px;
    }
}
