* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body, html {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f5f7fa;
    overflow: hidden;
}

.container {
    display: flex;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.left-section, .right-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.left-section {
    position: relative;
    color: white;
}
.left-overlay {
    position: absolute;
    inset: 0;
    background-image: url("https://cdn.iyigelir.com.tr/auth/splash.png");
    background-repeat: no-repeat;
    background-size: cover; 
    background-position: center 55%;  
}

 @media (max-height: 900px) {
    .left-overlay {
        background-position: center 58%;
    }
}

@media (max-height: 800px) {
    .left-overlay {
        background-position: center 60%;
    }
}

 @media (max-height: 700px) {
    .left-overlay {
        background-size: contain;  
        background-position: center;  
        background-color: #f6f7f8;  
    }                                 
}                                     
                                      
 @media (min-aspect-ratio: 16/9) {
    .left-overlay {
        background-size: contain;
        background-position: center;
        background-color: #f6f7f8;
    }
}
.app-name {
    font-size: 2.2em;
    font-weight: bold;
    letter-spacing: 2px;
    text-align: center;
}

.notification {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
}

.notification p {
    font-size: 1em;
}

.notification span {
    font-size: 0.9em;
    color: #f0f0f0;
}

.footer {
    text-align: center;
}

.footer h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.footer p {
    font-size: 0.85em;
    color: #e0e0e0;
}

.dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 10px;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #bbb;
    border-radius: 50%;
}

.dot.active {
    background-color: #fff;
}

.right-section {
    background-color: #fff;
    color: #333;
}

.back-button {
    align-self: flex-start;
    background: none;
    border: none;
    font-size: 1em;
    color: #000;
    cursor: pointer;
    transition: color 0.3s;
    position: absolute;
    top: 40px;
    left: 40px;
    margin-bottom: 0;
    z-index: 5;
}

h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.auth-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #000000;
    margin-bottom: 10px;
}

.auth-description {
    font-family: "Nacelle", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0%;
    color: rgba(0, 0, 0, 0.54);
    margin-bottom: 0 !important;
    margin-top: 24px;
    margin-left: 20px;
    font-size: 1em;
}

.login-form {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    padding: 0 20px;
    margin-top: 100px;
}

@media (min-width: 798px) {
    .login-form {
        margin-top: 16px;
        margin-left: 0;
        font-size: 0.875em;
    }

    .auth-description {
        margin: 0 !important
    }
}

.login-form label {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #000000;
    margin-top: 10px;
    margin-bottom: 8px;
}

.phone-input {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.phone-input .iti,
.phone-input .iti #phone{
   width: 100% !important;
}

.country-code {
    background-color: #f0f0f0;
    padding: 10px;
    border-radius: 5px 0 0 5px;
    color: #333;
}

.phone-input input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 0 5px 5px 0;
    outline: none;
}

.phone-input input:focus,
.inputAuth:focus {
    border-color: #43C000;
    box-shadow: 0 0 0 2px rgba(67, 192, 0, 0.1);
}

input[type="password"] {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}

.inputAuth {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}

.forgot-password {
    font-family: "Nacelle", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #2C70DB;
    text-decoration: none;
    margin-bottom: 20px;
    display: inline-block;
    transition: color 0.3s;
    width: 130px;
    height: 20px;
}

.forgot-password:hover {
    color: #0056b3;
}

.login-button {
    padding: 11px;
    background-color: #11BF2B;
    color: white;
    border: 1px solid #11BF2B;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
}

.login-button:hover {
    background-color: #218838;
}

.login-button.secondary {
    background: white;
    color: #11BF2B;
}
.login-button.secondary:hover {
    background-color: white;
}

.signup-prompt {
    font-family: "Nacelle", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #000000;
    text-align: center;
    margin-top: 20px;
}

.signup-prompt a {
    color: #2C70DB;
    text-decoration: none;
    transition: color 0.3s;
}

.signup-prompt a:hover {
    color: #0056b3;
}

.qr-button {
    padding: 12px;
    background: none;
    color: #28a745;
    border: 2px solid #28a745;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    margin-top: 15px;
    transition: background-color 0.3s, color 0.3s;
}

.qr-button:hover {
    background-color: #28a745;
    color: white;
}

.consents-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 10px;
    font-family: Arial, sans-serif;
}

.consent-container {
    display: flex;
    align-items: center; /* Değişiklik burada - flex-start yerine center kullanıldı */
    gap: 10px;
}

.custom-checkbox {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.custom-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    background-color: white;
    border: 2px solid #ccc;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.custom-checkbox input[type="checkbox"]:checked + .checkmark {
    background-color: #4CAF50;
    border-color: #4CAF50;
}

.checkmark:after {
    content: "✓";
    position: absolute;
    display: none;
    color: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
}

.custom-checkbox input[type="checkbox"]:checked + .checkmark:after {
    display: block;
}

.consent-text {
    font-family: "Nacelle", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #000000;
    margin: 0;
    width: 313px;
    height: 48px;
}

.consent-text.commercial-consent {
    display: flex;
    align-items: center;
}

.consent-text a {
    font-family: "Nacelle", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #2C70DB;
    text-decoration: underline;
}

.consent-text a:hover {
    text-decoration: none;
}

.checkmark.error {
    border: 2px solid red;
    border-radius: 3px; /* Kare kenarları düzeltmek için */
    animation: shake 0.3s ease-in-out;
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(5px);
    }

    75% {
        transform: translateX(-5px);
    }
}
/* Responsive Tasarım */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        width: 100vw;
        height: 100vh;
    }

    .left-section, .right-section {
        flex: none;
        width: 100%;
        height: 50vh;
        padding: 20px;
    }

    .right-section {
        min-height: 50vh;
        max-height: 50vh;
        overflow-y: auto;
        overflow-x: hidden;
        justify-content: flex-start;
        padding-top: 20px;
    }

    .app-name {
        font-size: 1.5em;
    }

    .footer h2 {
        font-size: 1.5em;
    }

    h2 {
        font-size: 1.5em;
    }

    .login-form {
        max-width: 90%;
    }

    .dots {
        gap: 4px;
    }
}

@media (max-width: 480px) {
    .left-overlay {
        padding: 20px;
    }

    .notification {
        padding: 10px;
        font-size: 0.9em;
    }

    .footer h2 {
        font-size: 1.2em;
    }

    .container {
        border-radius: 0;
    }

    .login-form {
        max-width: 100%;
    }

    .country-code, .phone-input input {
        font-size: 0.9em;
        width: 100% !important;
    }

    .login-button, .qr-button {
        font-size: 0.9em;
    }
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
textarea:focus,
select:focus {
    border-color: #43C000 !important;
    box-shadow: 0 0 0 2px rgba(67, 192, 0, 0.1) !important;
}

.iti:focus-within .iti__selected-flag {
    border-right-color: #43C000 !important;
}

.loader {
    position: absolute;
    top: calc(50% - 32px);
    left: calc(50% - 32px);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    perspective: 800px;
}

.inner {
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.inner.one {
    left: 0%;
    top: 0%;
    animation: rotate-one 1s linear infinite;
    border-bottom: 3px solid #EFEFFA;
}

.inner.two {
    right: 0%;
    top: 0%;
    animation: rotate-two 1s linear infinite;
    border-right: 3px solid #EFEFFA;
}

.inner.three {
    right: 0%;
    bottom: 0%;
    animation: rotate-three 1s linear infinite;
    border-top: 3px solid #EFEFFA;
}

@keyframes rotate-one {
    0% {
        transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
    }
}

@keyframes rotate-two {
    0% {
        transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
    }
}

@keyframes rotate-three {
    0% {
        transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
    }
}

.right-section {
    background-color: #fff;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    position: relative;
}

h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 24px;
}

p {
    font-size: 1em;
    margin-bottom: 30px;
    color: #555;
}

.verifyForgetPassword-code {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center; 
}

.verifyForgetPassword-code input {
    width: 45px;
    height: 45px;
    font-size: 1.5em;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s;
}

.verifyForgetPassword-code input:focus {
    border-color: #43C000;
}

.verifyRegister-code {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center; 
}

.verifyRegister-code input {
    width: 45px;
    height: 45px;
    font-size: 1.5em;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s;
}
.verifyRegister-code input:focus {
    border-color: #43C000;
}

.verification-code {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: flex-start;
    width: 100%;
}

.verification-code input {
    font-family: "Nacelle", sans-serif;
    font-weight: 400;
    width: 49px;
    height: 54px;
    font-style: normal;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0%;
    color: rgba(0, 0, 0, 0.54);
    text-align: center;
    border: 1px solid #CDCFDB;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s;
    background-color: #fff;
}

.verification-code input:focus {
    border-color: #43C000;
    box-shadow: 0 0 0 2px rgba(67, 192, 0, 0.25);
}


.back-button:hover {
    color: #0056b3;
}

.resend-button {
    background-color: transparent;
    color: #007bff;
    border: none;
    cursor: pointer;
    font-size: 0.9em;
    margin-bottom: 20px;
    transition: color 0.3s;
}

.resend-button:hover {
    color: #0056b3;
}

.verify-button {
    padding: 12px 20px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
}

.verify-button:hover {
    background-color: #218838;
}

@media (max-width: 768px) {
    .right-section {
        padding: 20px;
    }

    h2 {
        font-size: 1.5em;
    }

    .verification-code input {
        width: 45px;
        height: 50px;
    }

    .back-button {
        top: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .right-section {
        padding: 15px;
    }

    h2 {
        font-size: 1.3em;
    }

    p {
        font-size: 0.9em;
    }

    .verification-code input {
        width: 40px;
        height: 45px;
    }

    .verify-button {
        font-size: 0.9em;
        padding: 10px 18px;
    }
}

/* Modal Ana Container */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1050;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Modal İçerik Container */
.modal-content {
    position: relative;
    background-color: #fff;
    margin: 30px auto;
    width: 90%;
    max-width: 800px; /* Daha geniş modal */
    border-radius: 12px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 60px); /* Ekran yüksekliğine göre ayarlama */
}

/* Modal Başlık Alanı */
.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    background-color: #f9fafb;
    position: sticky;
    top: 0;
    z-index: 2;
}

.modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #111827;
}

/* Kapatma Butonu */
.close-modal-btn {
    background: #000000;
    border: none;
    cursor: pointer;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s ease;
    width: 32px;
    height: 32px;
}

.close-modal-btn:hover {
    background-color: #333333;
    color: #ffffff;
}

/* Modal İçeriği */
.modal-body {
    padding: 24px;
    overflow-y: auto; /* İçerik kaydırılabilir */
    flex-grow: 1;
    max-height: calc(100vh - 180px); /* Header ve padding'i hesaba katarak */
}

/* Modal İçindeki Anlaşma İçeriği */
.agreement-content {
    color: #374151;
    line-height: 1.6;
}

.agreement-content h4 {
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 17px;
    color: #111827;
}

.agreement-content h4:first-child {
    margin-top: 0;
}

.agreement-content p {
    margin-bottom: 16px;
    font-size: 15px;
}

/* Link Stilleri */
.consent-text a {
    color: #0057ff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.consent-text a:hover {
    color: #2C70DB;
    text-decoration: underline;
}

/* Responsive Ayarları */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20px auto;
    }

    .modal-header {
        padding: 16px 20px;
    }

    .modal-body {
        padding: 20px;
        max-height: calc(100vh - 160px);
    }

    .agreement-content h4 {
        font-size: 16px;
    }

    .agreement-content p {
        font-size: 14px;
    }
}

/* Mobil Cihazlar İçin Küçük Ekran Ayarları */
@media (max-width: 480px) {
    .modal-content {
        width: 100%;
        margin: 10px auto;
    }

    .modal-header {
        padding: 14px 16px;
    }

    .modal-body {
        padding: 16px;
    }
}

/* Scroll Bar Stilini Özelleştirme */
.modal-body::-webkit-scrollbar {
    display: none;
}

.modal-body {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.returning-user-warning .modal-body {
    padding: 27px 16px;
}
.returning-user-warning .close-modal-btn {
    position: absolute;
    right: 14px;
    top: 15px;
    background: transparent;
    padding: 0;
    width: 21px;
    height: 21px;
}
.returning-user-warning .modal-content {
    position: relative;
    max-width: 393px;
    text-align: center;
    justify-content: center;
}

.returning-user-warning h2 {
    margin: 23px auto 21px;
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
}

.returning-user-warning p {
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 6px;
    color: rgba(0, 0, 0, 0.54);


}

.returning-user-warning .login-button {
    margin-top: 15px;
    display: block;
    width: 100%;
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;
}
.returning-user-warning .login-button.secondary {
    font-size: 14px;
}

.resend-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    width: 100%;
}

.resend-button {
    background-color: transparent;
    color: #007bff;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: color 0.3s;
    margin-bottom: 0px;
    width: auto;
    height: 26px;
    line-height: 26px;
    text-align: center;
}

.resend-button:disabled {
    color: #ccc;
    cursor: not-allowed;
}

.timer-circle {
    width: 60px;
    height: 60px;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa;
}

#timer {
    font-size: 18px;
    font-weight: 500;
    color: #666;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.continue-button {
    background-color: #EAEAEC;
    color: #333;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    height: 56px;
    margin-top: 10px;
}

.continue-button:not(:disabled) {
    background-color: #11BF2B;
    color: #fff;
}

.continue-button:disabled {
    background-color: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}

.continue-button:not(:disabled):hover {
    background-color: #10a825;
    transform: translateY(-1px);
}

.password-requirements {
    margin-top: 20px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.requirement-box {
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #ffffff;
    font-size: 14px;
    color: #666;
    transition: all 0.3s ease;
}

.requirement-box.requirement-met {
    background-color: #e8f5e8;
    border-color: #4caf50;
    color: #2e7d32;
}

.requirement-box span {
    display: block;
}

/* Doğrulama Talimat Metni Stili */
.verification-instruction {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0%;
    color: rgba(0, 0, 0, 0.54);
    margin-bottom: 20px;
    max-width: 361px;
    margin-left: auto;
    margin-right: auto;
}

.verification-label {
    margin-bottom: 10px;
}

.password-input-container {
    margin-bottom: 20px;
}

.password-input-container label {
    display: block;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
    padding-right: 50px;
}

.password-input:focus {
    border-color: #43C000;
    box-shadow: 0 0 0 2px rgba(67, 192, 0, 0.1);
}

.password-toggle {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.password-toggle:hover,
.password-toggle:focus,
.password-toggle:active {
    background-color: transparent !important;
    outline: none;
    box-shadow: none;
}

.eye-icon {
    font-size: 18px;
    color: #666;
}

.password-requirements {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.requirement-box {
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #ffffff;
    font-size: 14px;
    color: #666;
    transition: all 0.3s ease;
    position: relative;
}

.requirement-box.requirement-met {
    background-color: #e8f5e8;
    border-color: #4caf50;
    color: #2e7d32;
}

.requirement-box.requirement-met::before {
    content: "✓";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #4caf50;
    font-weight: bold;
    font-size: 16px;
}

.requirement-box span {
    display: block;
    font-weight: 400;
}

.login-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.login-button:disabled:hover {
    background-color: #ccc;
    transform: none;
}

@media (max-width: 768px) {
    .password-input {
        font-size: 16px; 
    }
    
    .requirement-box {
        padding: 10px 14px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .password-input-wrapper {
        margin-bottom: 15px;
    }
    
    .password-requirements {
        margin: 15px 0;
        gap: 6px;
    }
    
    .requirement-box {
        padding: 8px 12px;
        font-size: 12px;
    }
}

.iti__selected-flag {
    background-color: transparent !important;
    border-right: 1px solid #ccc;
}

.iti--allow-dropdown .iti__selected-flag:hover,
.iti__selected-flag:hover {
    background-color: transparent !important;
}

.iti__selected-flag:focus,
.iti__selected-flag:focus-visible,
.iti--allow-dropdown .iti__selected-flag.iti__active,
.iti--separate-dial-code input[type="tel"]:focus ~ .iti__flag-container .iti__selected-flag {
    border-right-color: #43C000 !important;
}

.login-button{
    margin-top: 40px;
}