@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@300&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Titillium Web', bahnschrift light;
}
body{
    background-color: hsl(0, 0%, 98%);
}
header{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    width: 100%;
    background-image: url(../images/32028465.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
header article{
    width: 450px;
    margin: 0px 25px;
}
header article h1{
    font-size: 40px;
}
header h1 i{
    font-style: normal;
    background: linear-gradient(to right, #ec77ab 0%, #7873f5 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}
article h1, h2{
    margin-bottom: 10px;
    color: darkblue;
}
header article .art-links{
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.art-links a{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.art-links a div{
    border-radius: 50% 0% 50% 0%;
    background-color: #ddd;
    padding: 10px;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: ease-in 1s;
    cursor: pointer;
}
.art-links a div:hover{
    background-color: darkblue;
}
.art-links a span:hover{
    color: blue;
}
.art-links a span{
    margin-top: 10px;
    font-size: 12px;
    font-weight: bold;
    color: darkblue;
    cursor: pointer;
    max-width: 50px;
    text-overflow: ellipsis;
    overflow:hidden;
}
header article p{
    padding: 10px 0px;
    margin-bottom: 10px;
}
.slider {
    position: relative;
    width: 450px; 
	height: 430px;
    overflow: hidden;
    background-color: whitesmoke;
    padding: 0; /* 30px */
}
.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%; /* added width and height */
    height: 100%;
}
.slide {
    flex: 0 0 100%; /* each slide takes 100% of slider width */
    width: 100%;
    height: 100%;
    object-fit: cover; /* ensures image fills slide without distortion */
}
/* .slide {
    min-width: 100%;
    box-sizing: border-box;
} */
.new-services{
    width: 100%;
    margin: 40px 0px;
}
.new-services h2{
    text-align: center;
    margin: 40px auto;
}
.new-services .serv-con{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.new-services .serv-con div{
    width: 300px;
    height: 230px;
    border: 1px solid #ccc;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 10px;
    padding: 10px;
    color: black;
}
.new-services .serv-con div:hover{
    background-color: darkblue;
    color: white;
}
.new-services a{
    text-decoration: none;
    color: black;
}
.new-services .serv-con div p{
    max-width: 100%;
    margin-top: 20px;
}
.new-services .serv-con img{
    margin: 5px;
}
.founders{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 70px 0px;
}
.founders article{
    width: 400px;
    height: 430px;
    padding: 20px;
    background-color: #fff;
    border-radius: 20px;
    margin: 0px 30px;
}
.founders article h1{
    font-size: 50px;
    margin-bottom: 80px;
}
.founders p{
    font-size: 13px;
    line-height: 22px;
}
.founders .stats{
    background-color: #fff;
    border-radius: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 10px;
}
.founders .stat-box{
    width: 50%;
    padding: 10px;
    display: grid;
    background-color: whitesmoke;
    border-radius: 10px;
    font-size: small;
    font-weight: bold;
    margin: 0px 10px;
    color: darkblue;
}
.founders .stat-box h3{
    font-size: 19px;
    color: darkblue;
}
.contact-us{
    background-image: url(../images/FB_IMG_16259226282664889.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 380px;
    margin: 30px 0px;
}
.contact-us div{
    background-color: rgba(0, 0, 139, 0.671);
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 30px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.contact-us h1{
    font-size: 40px;
    margin-top: 20px;
}
.contact-us p{
    margin-top: 10px;
    width: 500px;
}
.contact-us button{
    width: 120px;
    padding: 10px;
    border: none;
    background-color: white;
    color: darkblue;
    font-weight: bold;
    cursor: pointer;
    margin-top: 30px;
    font-size: large;
}
.contact-us button:hover{
    background-color: blue; 
    color: white;
    transition: ease-in 1s;
}
.about{
    width: 100%;
    margin: 20px 0px;
    padding: 50px 100px 80px 100px;
    background-color: #fff;
}
.about article{
    padding: 30px;
    margin-left: 100px;
}
.about article p{
    font-size: large;
    color: #ec77ab;
    font-weight: bold;
    margin-top: 5px;
}
.about div h3{
    color: darkblue;
    margin-bottom: 5px;
}
.about-info{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 30px;
}
.about-info div{
    width: 280px;
    margin: 10px;
}
.login{
    padding: 50px;
    margin-bottom: 50px;
}
.login .container{
    display: flex;
    justify-content: center;
    align-items: center;
}
.login .container form{
    width: 430px;
    padding: 20px;
    height: 420px;
    display: grid;
    align-items: center;
}
.login form h2{
    text-align: center;
    color: darkblue;
}
.login form .info{
    color: #ccc;
    text-align: center;
    padding: 14px;
}
.login .container form div{
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 350px;
}
.login .container form div img{
    margin: 10px;
}
.login .container form div input{
    width: 300px;
    padding: 10px;
    color: black;
    border: 1px solid lightgray;
}
.login .container form .submit{
    width: 300px;
    padding: 10px;
    background-color: darkblue;
    color: white;
    border: none;
    font-weight: bold;
    cursor: pointer;
    margin-left: 50px;
    font-size: 17px;
}
.login .container form .submit:hover{
    background-color: blue;
}

.login .container form p a{
    padding: 5px;
    text-decoration: none;
    color: darkblue;
    font-weight: bold;
}
.login .container form .extra{
    display: flex;
    justify-content: space-around;
    margin: 20px;
}
.login .side{
    padding: 0;
    width: 400px;
    height: auto;
}
.login .or{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 30px;
    margin-top: 15px;
}
.login .or hr{
    color: black;
    background-color: black;
    height: 2px;
    width: 90px;
    margin: 10px;
} 
.signup{
    padding: 30px;
    min-height: 150vh;
    margin-bottom: 150px;
}
.signup .container{
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
}
.signup .container form{
    width: 430px;
    padding: 20px;
    height: 420px;
    display: grid;
    align-items: center;
}
.signup form h2{
    color: darkblue;
    text-align: center;
}
.signup form .info{
    color: #ccc;
    text-align: center;
    padding: 14px;
}
.signup .container form .form{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}
.signup .container form .form .con{
    display: block;
}
.signup .container form div{
    margin-bottom: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 350px;
}
.signup .container form div img{
    margin: 10px;
}
.signup .container form div input{
    width: 260px;
    padding: 10px;
    color: black;
    border: 1px solid lightgray;
}
.signup .container form .submit{
    width: 300px;
    padding: 10px;
    background-color: darkblue;
    border: none;
    font-weight: bold;
    cursor: pointer;
    margin-left: 50px;
    font-size: 17px;
    color: white;
}
.signup .container form .submit:hover{
    background-color: blue;
}
.signup .container form p a{
    padding: 5px;
    text-decoration: none;
    color: darkblue;
    font-weight: bold;
}
.signup .container form .extra{
    display: flex;
    justify-content: space-around;
    margin: 20px;
}
.signup .side{
    padding: 0;
    width: 400px;
    height: auto;
}
.signup aside{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
}
.signup aside label{
    font-size: small;
    color: #ccc;
    font-weight: bold;
}
.signup .or{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 30px;
    margin-top: 15px;
}
.signup .or hr{
    color: black;
    background-color: black;
    height: 2px;
    width: 90px;
    margin: 10px;
} 
/* Modern Password Reset Form Styles */
.reset-modern {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.reset-container {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 40px;
    max-width: 450px;
    width: 100%;
    text-align: center;
}

.reset-header {
    margin-bottom: 30px;
}

.reset-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: #1d4ed8;
    border-radius: 50%;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.reset-header h2 {
    color: darkblue;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.reset-header p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.5;
}

.reset-form {
    margin-bottom: 30px;
}

.error-messages {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 20px;
}

.error-message {
    color: #dc2626;
    font-size: 14px;
    font-weight: 500;
}

.input-group {
    text-align: left;
    margin-bottom: 24px;
}

.input-group label {
    display: block;
    color: darkblue;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 12px;
    color: #64748b;
    z-index: 1;
    font-size: 16px;
}

.input-wrapper input {
    width: 100%;
    padding: 12px 12px 12px 44px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.2s;
    background: #f8fafc;
}

.input-wrapper input:focus {
    outline: none;
    border-color: #1d4ed8;
    background: white;
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
}

.reset-button {
    width: 100%;
    background: #1d4ed8;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.reset-button:hover {
    background: darkblue;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(29, 78, 216, 0.3);
}

.reset-button:active {
    transform: translateY(0);
}

.reset-footer p {
    color: #64748b;
    font-size: 14px;
}

.reset-footer a {
    color: #1d4ed8;
    text-decoration: none;
    font-weight: 500;
}

.reset-footer a:hover {
    text-decoration: underline;
}

/* Modern Password Reset Sent Styles */
.reset-sent-modern {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.reset-sent-container {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.success-animation {
    margin-bottom: 30px;
}

.checkmark-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: #1d4ed8;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

.reset-sent-header h2 {
    color: darkblue;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.reset-sent-header p {
    color: #64748b;
    font-size: 16px;
    margin-bottom: 30px;
}

.email-illustration {
    margin:  30px auto;
    color: #1d4ed8;
    font-size: 80px;
}

.instructions {
    text-align: left;
    margin-bottom: 30px;
}

.instructions h3 {
    color: darkblue;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
}

.instructions ul {
    list-style: none;
    padding: 0;
}

.instructions li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #475569;
}

.instructions li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1d4ed8;
    font-weight: bold;
}

.note {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.note p {
    margin: 0;
    font-size: 14px;
}

.note p:first-child {
    color: darkblue;
    font-weight: 600;
    margin-bottom: 4px;
}

.note p:last-child {
    color: #64748b;
}

.reset-sent-footer {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.back-button, .resenda-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.back-button {
    background: #f1f5f9;
    color: #334155;
    border: none;
}

.back-button:hover {
    background: #e2e8f0;
}


.resenda-button {
    color: darkblue;
    font-weight: bold;
    border: none;
}
.resenda-button:hover {
    background: #1d4ed8;
    color: white;
}



/* Modern Password Confirm Styles */
.password-confirm-modern {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.password-confirm-container {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 40px;
    max-width: 450px;
    width: 100%;
    text-align: center;
}

.password-confirm-header {
    margin-bottom: 30px;
}

.password-confirm-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: #1d4ed8;
    border-radius: 50%;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.password-confirm-header h2 {
    color: darkblue;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.password-confirm-header p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.5;
}

.password-confirm-form {
    margin-bottom: 30px;
}

.password-requirements {
    text-align: left;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
}

.password-requirements h4 {
    color: darkblue;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.password-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.password-requirements li {
    padding: 2px 0;
    padding-left: 16px;
    position: relative;
    color: #475569;
    font-size: 13px;
}

.password-requirements li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1d4ed8;
    font-weight: bold;
}

.password-confirm-button {
    width: 100%;
    background: #1d4ed8;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.password-confirm-button:hover {
    background: darkblue;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(29, 78, 216, 0.3);
}

.password-confirm-footer p {
    color: #64748b;
    font-size: 14px;
}

.password-confirm-footer a {
    color: #1d4ed8;
    text-decoration: none;
    font-weight: 500;
}

.password-confirm-footer a:hover {
    text-decoration: underline;
}

/* Password Toggle Button Styles */
.password-toggle {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.password-toggle:hover {
    color: #1d4ed8;
}

.password-toggle:focus {
    outline: none;
    color: #1d4ed8;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper input[type="password"],
.input-wrapper input[type="text"] {
    padding-right: 44px; /* Make room for toggle button */
}

/* Modern Password Complete Styles */
.password-complete-modern {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.password-complete-container {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.success-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: #1d4ed8;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    animation: scaleIn 0.5s ease-out;
}

.password-complete-header h2 {
    color: darkblue;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.password-complete-header p {
    color: #64748b;
    font-size: 16px;
    margin-bottom: 30px;
}

.success-illustration {
    margin-bottom: 30px;
    font-size: 80px;
}

.next-steps {
    text-align: left;
    margin-bottom: 30px;
}

.next-steps h3 {
    color: darkblue;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #475569;
}

.next-steps li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1d4ed8;
    font-weight: bold;
}

.password-complete-footer {
    text-align: center;
}

.login-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #1d4ed8;
    color: white;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.login-button:hover {
    background: darkblue;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(29, 78, 216, 0.3);
}

/* Modern OTP Styles */
.otp-modern {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    padding: 20px;
}

.otp-container {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 40px;
    max-width: 450px;
    width: 100%;
    text-align: center;
}

.otp-header {
    margin-bottom: 30px;
}

.otp-icon {
    display: inline-block;
    margin-bottom: 20px;
    color: #1d4ed8;
    font-size: 64px;
}

.otp-header h2 {
    color: darkblue;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.otp-subtitle {
    color: #64748b;
    font-size: 16px;
    margin-bottom: 4px;
}

.email-display {
    color: #1d4ed8;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
}

.otp-form {
    margin-bottom: 30px;
}

.message-container {
    margin-bottom: 20px;
}

.message-item {
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}

.message-item.error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
}

.message-item.success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #059669;
}

.otp-input-container {
    margin-bottom: 24px;
}

.otp-input-container label {
    display: block;
    color: darkblue;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
}

.otp-input-wrapper {
    position: relative;
}

.otp-input {
    width: 100%;
    padding: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 8px;
    background: #f8fafc;
    transition: all 0.2s;
}

.otp-input:focus {
    outline: none;
    border-color: #1d4ed8;
    background: white;
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
}

.otp-input.error {
    border-color: #dc2626;
    background: #fef2f2;
}

.otp-input.valid {
    border-color: #059669;
    background: #f0fdf4;
}

.error-text {
    display: none;
    color: #dc2626;
    font-size: 14px;
    margin-top: 8px;
    font-weight: 500;
}

.timer-container {
    margin-bottom: 24px;
}

.timer-container p {
    color: #64748b;
    font-size: 14px;
    margin: 0;
}

.timer {
    color: #1d4ed8;
    font-weight: 600;
}

.verify-button {
    width: 100%;
    background: #1d4ed8;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.verify-button:hover:not(:disabled) {
    background: darkblue;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(29, 78, 216, 0.3);
}

.verify-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.button-spinner svg {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.otp-footer {
    text-align: center;
}

.otp-footer p {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 12px;
}

.resend-button {
    background: none;
    border: none;
    color: #1d4ed8;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: underline;
}

.resend-button:disabled {
    color: #94a3b8;
    cursor: not-allowed;
    text-decoration: none;
}

.resend-button:hover:not(:disabled) {
    color: darkblue;
}

/* Legacy styles for backward compatibility */
.otp-page{
    margin: 20px;
    height: 70vh;
    padding: 20px;
}
.otp-page p{
    padding: 10px;
    width: 250px;
    font-size: small;
}
.otp-page h3{
    padding: 10px;
    color: darkblue;
}
.otp-page form{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 350px;
    margin: auto;
    margin-top: 80px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 20px;
}
.otp-page form input{
    width: 250px;
    padding: 10px;
}
.otp-page form button{
    width: 100px;
    cursor: pointer;
    font-family: bahnschrift light;
    font-weight: bold;
    padding: 10px;
    border: none;
    background-color: darkblue;
    color: white;
    margin-top: 10px;
}
.otp-page form button:hover{
    background-color: blue;
}
.reset{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.resetForm{
    max-width: 400px;
    margin: 10px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
.reset .form-group {
    margin-bottom: 15px;
}
.reset label {
    font-weight: bold;
}
.reset input[type="email"],
.reset input[type="password"] {
    width: 200px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}
.reset button {
    width: 300px;
    padding: 10px;
    background-color: darkblue;
    color: white;
    border: none;
    font-weight: bold;
    cursor: pointer;
    font-size: 13px;
}
.reset button:hover {
    background-color: #0056b3;
}
.reset form div{
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 350px;
}
.reset form p{
    padding: 14px;
}
.reset form h2{
    color: darkblue;
}
.reset .complete{
    max-width: 400px;
    margin: 10px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
.myaccount{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 50px;
}
.myaccount article{
    width: 80%;
    margin-bottom: 10px;
}
.myaccount .account{
   background-color: #fff;
   border-radius: 20px;
   width: 80%;
}
.account .bookmark{
    width: 100%;
    padding: 50px;
    background: linear-gradient(68.4deg, rgb(248, 182, 204) 0.5%, rgb(192, 198, 230) 49%, rgb(225, 246, 240) 99.8%);
}
.account form{
    padding: 20px 40px;
}
.account img{
    border-radius: 40%;
    margin: 0px 20px;
}
.account .pro-details{
    display: flex;
    align-items: center;
    padding: 10px;
}
.account .pro-details p{
    font-size: 12px;
}
.account form .settings{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 80%;
    margin-bottom: 40px;
}
.account form label{
    font-size: small;
    font-weight: bold;
    margin: 20px 0px 5px 0px;
}
.account form input{
    width: 350px;
    padding: 10px;
    background-color: whitesmoke;
    border-radius: 10px;
    border: none;
}
.account form button{
    width: 100px; 
    padding: 10px;
    border: none;
    background-color: darkblue;
    color: white;
    font-weight: bold;
    cursor: pointer;
    margin: 30px 0px;
    border-radius: 5px;
    float: left;
}
.account form button:hover{
    background-color: blue;
}
.account .settings div{
    display: grid;
}
/* Responsiveness */ 
@media only screen and (max-width:430px){
    body{
        width: 100%;
    }
    .slider{
        width: 330px;
        height: 230px;
    }
    .slides img{ 
        width: 100%;
        height: 280px;
    } 
    .signup{
        padding: 10px;
    }
    .signup .container form div input{
        width: 230px;
    }
    .signup .side{
        display: none;
    }
    .signup .container form{
        width: 350px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .signup form div{
        width: 300px;
    }
    .signup .container form .submit{
        width: 300px;
        margin-left: 0px;
    }
    .login{
        padding: 10px;
    }
    .login .side{
        display: none;
    }
    .login .container form div input{
        width: 230px;
    }
    .login .container form{
        width: 350px;
    }
    .login .container form div{
        width: 300px;
    }
    .login .container form .submit{
        margin-left: 5px;
        width: 260px;
    }
    header article{
        width: 350px;
        margin: auto;
    }
    header{
        flex-wrap: wrap;
        padding: 10px;
    }
    .art-links a div{
        width: 50px;
    }
    .services{
        padding: 10px;
        height: 400px;
        position: relative;
    }
    .service-con div{
        position: inherit;
    }
    .contact-us{
        background-size: contain;
    }
    .contact-us div{
        padding: 5px;
    }
    .contact-us p{
        width: 300px;
    }
    .founders .info-box{
        margin-top: 30px;
    }
    .about{
        padding: 10px;
    }
    .about article{
        margin-left: 10px;
    }
    .myaccount{
        padding: 30px 5px;
    }
    .myaccount .account{
        width: 90%;
    }
    .account .bookmark{
        padding: 5px;
    }
    .account form{
        padding: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .account form input{
        width: 240px;
    }
    .account form .settings{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 90%;
    }
    .account .settings div{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

}