/*==================================================================
            sign-up.php & sign-in.php css helper script begins here!  
===================================================================== */

/* Base styling */
.error-message {
    color: red;
    list-style: none;
    margin: 10px 0;
    padding: 10px;
    border: 1px solid red;
    border-radius: 5px;
    background: #ffe6e6;
    max-height: 0;
    overflow: hidden;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.error-message li{
    font-size: 14px;
}
/* Slide down (show) */
.error-message.show {
    max-height: 200px; /* big enough to fit content */
    opacity: 1;
    transform: translateY(0);
}

/* Fade out + slide up (hide) */
.error-message.fade-out {
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
}



/*==================================================================
            verify.php css helper script begins here!  
===================================================================== */


@import url('https://fonts.googleapis.com/css2?family=Quintessential&display=swap');

.quintessential-regular {
  font-family: "Quintessential", serif;
  font-weight: 400;
  font-style: normal;
}
.html, .body{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.header{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 100px;
    border-bottom: 1px solid grey;
    padding-bottom: 20px;
}

.back-arrow{
    position: absolute;
    left: 10px;
}

.logo-text{
    text-align: center;
}

a.logo-text{
    font-size: 35px;
    font-family: "Quintessential", serif;
}

.mail-icon{
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: center;
}
.round-bg{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.round-bg img{
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.contents{
    padding-top: 30px;
    text-align: center;
}

.contents  p, h5{
    font-family: 'Metric';
}

.contents h2{
    font-size: 2.2rem;
    font-family: 'Inter';
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 1.2px;
}

.contents p{
    font-size: 1.5rem;
}

.contents h4{
    font-family: 'Inter';
}

.contents .Enter{
    font-size: 1.5rem;
}

.error-messages{
    list-style: none;
    color: red;
    font-family: 'Metric';
    font-size: 1.5rem; 
    margin-right: 40px;
}

  /*  Success screen style */
.success-screen {
    display:flex;
    flex-direction: column;
    align-items:center;
    justify-content:center;
    height:100vh;
    text-align:center;
    font-family:'Metric';
    font-size:1.5rem;
    color:green;
    padding-bottom: 150px;
}

.gif{
    width: 350px;
    height: 350px;
    margin-bottom: 20px;
}

.verify-btn{
    width: 200px;
    height: 40px;
    color: blue;
    cursor: pointer;
    font-size: 1rem;
    border: 1px solid grey;
    border-radius: 5px;
    background-color: white;
}

.resend-btn{
    width: 300px;
    height: 40px;
    color: blue;
    cursor: pointer;
    background-color: white;
    border: 1px solid blue;
    border-radius: 5px;
    font-size: 1rem;
    text-align: center;
    font-weight: 500;
}

.contents .for{
    font-size: 1rem;
    font-weight: 500;
}

.otp-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    margin-bottom: 35px;
}

.otp-input {
    width: 40px;
    height: 60px;
    text-align: center;
    font-size: 24px;
    border: 2px solid #ccc;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.3s ease;
}

.otp-input:focus {
    border-color: #3c6fd3;
}

@keyframes shake {
    0% { transform: translateX(0); }
    20% { transform: translateX(-5px); }
    40% { transform: translateX(5px); }
    60% { transform: translateX(-5px); }
    80% { transform: translateX(5px); }
    100% { transform: translateX(0); }
}

.otp-container.shake {
    animation: shake 0.4s;
}

.otp-container.shake .otp-input{
    border-color: red !important;
}

/*---------  verify.php css helper script ends here!  ------------ */




/*==================================================================
            forgot-password.php css helper script begins here!  
===================================================================== */

.success-message {
    color: green;
    list-style: none;
    margin: 10px 0;
    padding: 10px;
    border: 1px solid green;
    border-radius: 5px;
    background: #d6f5d6;
    max-height: 0;
    overflow: hidden;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.success-message li{
    font-size: 14px;
}

/* Slide down (show) */
.success-message.show {
    max-height: 200px; /* big enough to fit content */
    opacity: 1;
    transform: translateY(0);
}

/* Fade out + slide up (hide) */
.success-message.fade-out {
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
}














/*==================================================================
            reset-password.php css helper script begins here!  
===================================================================== */

  /*  Success screen style */
.resetPass-success-screen {
    display:flex;
    flex-direction: column;
    align-items:center;
    justify-content:center;
    height:100vh;
    text-align:center;
    font-family:'Metric';
    color:green;
    padding-bottom: 150px;
    width: 100%;
}

