body {
    background-image: linear-gradient(#5960a5, #9a70ce, #c2a2e8, #f4ccee, #f3dcdb) !important; 
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    height: 100vh; 
    padding: 0 15px;
}

.success-message {
    color: #049c5d !important;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px; 
    margin-bottom: 10px; 
}

.error {
    border: 2px solid red;
}

  
  .error-message {
    color: #dc3545;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px; 
    margin-bottom: 10px;
  }
  
  .error-message img {
    height: 0.82em;
    margin-right: 0.5em;
  }
  
.forget-container {
    background-color: rgba(255, 255, 255, 0.9); 
    width: 100%; 
    max-width: 500px; 
    padding: 90px 50px;
    margin: auto; 
    border-radius: 8px; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 
    text-align: center; 
}

.form-group {
    width: 100%; 
    margin-bottom: 1rem;
}

.form-container {
    width: 100%; 
    max-width: 380px; 
    margin: 0 auto; 
}

input {
    width: 100%; 
    max-width: 380px; 
}

.blue-button {
    background-color: #c2a2e8 !important;
    width: 100%; 
    max-width: 380px; 
    /* font-family: 'Bowlby One SC', sans-serif; */
    color: rgb(0, 0, 0) !important;
}

.blue-button:hover {
    background-color: #b973c1 !important;
    color: #FFFFFF;
}

.title-heading {
    font-family: 'Bowlby One SC', sans-serif;
    color: #b973c1;
    padding-bottom: 20px;
    font-size: 3em; 
    text-align: center;
    text-shadow: 
        -2px -2px 0 #fff, 
        2px -2px 0 #fff, 
        -2px 2px 0 #fff, 
        2px 2px 0 #fff; 
}

@media (max-width: 768px) {
    .forget-container {
        padding: 70px 40px;
    }

    .title-heading {
        font-size: 2em; 
    }

    .blue-button {
        max-width: 100%; 
    }

    .form-container {
        max-width: 100%;
    }

    input {
        max-width: 100%; 
    }
}
