/* The Dreamer Bank - Giriş/Kayıt Sayfaları Stilleri */

/* Auth Pages Header - Beyaz arkaplan */
.auth-header {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    margin-top: 27px;
    ;
}

.main-footer {
    display: none;
}

.auth-header .navbar-brand {
    color: #333 !important;
}

.auth-header .menu-text {
    color: #141414 !important;
}

.menu-line {
    height: 2px !important;
}

.menu-line:nth-child(2) {
    background-color: #141414 !important;
}

.menu-line:nth-child(3) {
    background-color: #141414 !important;
}

.auth-header .btn-register {
    background: #FF7141;
    color: #fff;
}

.auth-header .mobile-login-btn {
    border-color: #333;
    color: #333;
}

/* Auth Pages Body */
.auth-page {
    background: #fff;
    min-height: 100vh;
    color: #333;
    padding-top: 100px;
}

/* Auth Container */
.auth-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /*min-height: calc(100vh - 100px);*/
    padding: 40px 20px;
    margin-top: 72px;
    position: relative;
}

/* Auth Card */
.auth-card {



    max-width: 450px;
    width: 100%;
    text-align: center;
}

/* Auth Header */
.auth-card-header {
    margin-bottom: 25px;
}

.auth-card-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: #141414;
    margin-bottom: 10px;
    font-family: 'Be Vietnam Pro';
}

.auth-card-header h1.email {
    font-size: 24px;
    ;
}

.auth-card-header p {
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

/* Social Login Buttons */
.social-login {
    margin-bottom: 30px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 14px 20px;
    border: 0.5px solid #D3D3D3;
    border-radius: 99px;
    background: #fff;
    color: #141414;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 12px;
}

.social-btn:hover {

    background: #ebebeb;

}

.social-btn img {
    width: 20px;
    height: 20px;
}

/* Divider */
.auth-divider {
    display: flex;
    align-items: center;
    margin: 15px 0;
    color: #DAD6C8;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #DAD6C8;
}

.auth-divider span {
    padding: 0 15px;

    font-family: "Montserrat", sans-serif;
}

/* Form Styles */
.auth-form {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-group {
    margin-bottom: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-input::placeholder {
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
    ;
}

.form-input {
    font-weight: 400;
    ;
    width: 450px;
    /* height: 48px; */
    padding: 12px 10px 12px 10px;
    border: 1px solid #666661;
    border-radius: 99px;
    font-size: 14px;
    font-family: 'Be Vietnam Pro';
    background: #FFFFFF;
    color: #BBBAB4;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus {

    background: #ebebeb;
    outline: none;
    border: none;
    box-shadow: none;
}

.form-input::placeholder {
    color: #999;
}

/* Password Input Container */
.password-input-container {
    position: relative;
    width: 450px;
    display: flex;
    align-items: center;
}

.password-input-container .form-input {
    width: 100%;
    padding-right: 50px;
}

.password-toggle {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    transition: color 0.3s ease;
    z-index: 10;
}

.password-toggle:hover {
    color: #FF7141;
}

.password-toggle:focus {
    outline: none;
}

/* URL Input Container */
.url-input-container {
    display: flex;
    align-items: center;
    width: 450px;
    background: #EBEBEB;
    border: 0px solid #D3D3D3;
    border-radius: 99px;
    padding: 0 20px;
    margin-bottom: 20px;
    box-sizing: border-box;
    position: relative;
    gap: 8px;
}

.url-prefix {
    background: #EBEBEB;
    color: #141414;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 0;
    white-space: nowrap;
    font-family: 'Be Vietnam Pro';
}

.url-username-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 8px;
    font-size: 14px;
    font-family: 'Be Vietnam Pro';
    color: #333;
    outline: none;
    min-width: 0;
}

.url-username-input::placeholder {
    color: #999;
    font-style: normal;
}

.info-icon {
    width: 20px;
    height: 20px;
    margin-left: auto;
    cursor: pointer;
    transition: opacity 0.3s ease;
    flex: 0 0 20px;
    display: block;
    position: relative;
}

.info-icon:hover {
    opacity: 1;
}

/* Tooltip Styles */
.info-tooltip {
    position: absolute;
    bottom: 30px;
    right: 0;
    background: #141414;
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 400;
    white-space: normal;
    max-width: 250px;
    width: max-content;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    pointer-events: none;
    font-family: 'Be Vietnam Pro', sans-serif;
    line-height: 1.4;
}

.info-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 10px;
    border: 6px solid transparent;
    border-top-color: #141414;
}

.info-tooltip.show {
    opacity: 1;
    visibility: visible;
}

.url-input-container:focus-within {
    border: none;
    background-color: #ebebeb;
}

/* Submit Button */
.auth-submit-btn {
    width: 450px;
    background: #ff6130;
    color: #fff;
    border: none;
    border-radius: 99px;
    padding: 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.auth-submit-btn:hover {
    background: #e55a3d;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 113, 65, 0.3);
}

/* Auth Footer */
.auth-footer {
    text-align: center;
    margin-top: 0px;
    padding-top: 0px;

}

.auth-footer p {
    font-size: 16px;
    font-weight: 500;
    color: #666661;
    margin-bottom: 10px;
}

.auth-footer a {
    font-weight: 700;
    color: #FF7141;
    text-decoration: none;
    font-weight: 600;
}

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

/* Terms and Privacy */
.auth-terms {
    font-size: 16px;
    font-weight: 500;
    color: #666661;
    text-align: center;
    margin-top: auto;
    margin-bottom: 50px;
    line-height: 1.5;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.auth-terms a {
    color: #141414;
    font-weight: 700;
    text-decoration: none;
}

.auth-terms a:hover {
    text-decoration: underline;
}

.mobile-register-btn-login {
    display: none;
}

.auth-card-header p {
    color: #666661;
}

.auth-form2 .form-group label {
    font-weight: 700;
    color: #141414;
    font-size: 14px;
    ;
}

.auth-form2 .form-group {
    text-align: left;
    align-items: normal;
}

.auth-form2 .form-input {
    background-color: #EBEBEB;
    border: 0px;
}

.auth-form2 .form-group textarea {
    height: 132px;
    ;
    border-radius: 24px;
    ;
    padding: 12px 24px;
}

.auth-form2 .form-group textarea::placeholder {
    color: #BBBAB4;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Be Vietnam Pro', sans-serif;
}

/* Profile Photo Upload Styles */
.profile-photo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.profile-photo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.profile-photo-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #EBEBEB;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.profile-photo-circle svg {
    opacity: 0.6;
}

.profile-photo-circle img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 50%;
}

.profile-photo-circle .default-photo-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;

}

.profile-photo-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 9px;
    background: transparent;
    border: 1px solid #141414;
    border-radius: 99px;
    color: #141414;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Be Vietnam Pro', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.profile-photo-btn:hover {
    border-color: #FF7141;
    color: #FF7141;
    transform: translateY(-1px);
}

.profile-photo-btn svg {
    width: 16px;
    height: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .auth-page {
        min-height: 99vh;
        ;
    }

    .auth-card-header p {
        font-size: 14px;
        font-weight: 400;
        ;
    }

    .mobile-register-btn-login {
        display: block;
        font-weight: 500;
        font-size: 14px;
        color: #141414;
        text-decoration: underline;
        margin-right: 15px;

    }

    .auth-footer {
        display: none;
    }

    .navbar-brand img {
                height: 23px !important;
        margin-left: 19px;
    }

    .auth-page {
        padding-top: 80px;
    }

    .auth-container {
        padding: 0px 15px;
        margin-top: 50px;
        /* min-height: calc(100vh - 80px);*/
    }

    .auth-terms {
        position: absolute;
        margin-top: 30px;
        margin-bottom: 8px;
        transform: none;
        left: auto;
        padding: 0px 15px;
        font-size: 10px;
    }

    .auth-card {
        padding: 15px 20px;
        border-radius: 16px;
    }

    .auth-card-header {
        text-align: left;
    }

    .auth-card-header h1 {
        font-size: 24px;
    }

    .social-btn {
        padding: 10px 16px;
        font-size: 14px;
    }

    .form-input {
        width: 100% !important;
        max-width: 450px;
        padding: 10px 20px;
        font-size: 14px;
        order: 0;
    }

    .password-input-container {
        width: 100% !important;
        max-width: 450px;
    }

    .password-input-container .form-input {
        padding-right: 45px;
    }

    .password-toggle {
        right: 12px;
    }

    .url-input-container {
        width: 100% !important;
        max-width: 450px;
        padding: 0 15px;
    }

    .url-prefix {
        padding: 12px 0;
        font-size: 14px;
    }

    .url-username-input {
        padding: 12px 0px;
        font-size: 14px;
        margin-left: -5px;
        ;
    }

    .info-icon {
        width: 18px;
        height: 18px;
        margin-left: auto;
    }

    .auth-submit-btn {
        width: 100% !important;
        max-width: 450px;
        padding: 12px;
        font-size: 14px;
    }

    /* Profile Photo Mobile Styles */
    .profile-photo-circle {
        width: 100px;
        height: 100px;
    }

    .profile-photo-circle svg {
        width: 50px;
        height: 50px;
    }

    .profile-photo-circle .default-photo-icon {
        width: 100%;
        height: 100%;
    }

    .profile-photo-btn {
        padding: 10px 8px;
        font-size: 13px;
    }

    .profile-photo-btn svg {
        width: 14px;
        height: 14px;
    }

    .auth-form2 .form-group textarea::placeholder {
        color: #BBBAB4;
        font-size: 13px;
        font-weight: 400;
        font-family: 'Be Vietnam Pro', sans-serif;
    }


}

@media (max-width: 480px) {
    .auth-card {
        padding: 25px 15px;
        margin: 0 10px;
    }

    .auth-card-header h1 {
        font-size: 24px;
    }
}

/* Step Progress Bar Container */
.step-progress-container {
    display: flex;
    justify-content: center;
    align-items: center;

}

/* Step Progress Bar */
.step-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 450px;
}

.step-item {
    position: relative;
    flex: 1;
    width: 147px;
    padding: 10px 0px;
}

.step-line {
    height: 8px;
    background: #E5E5E5;
    border-radius: 99px;
    transition: background-color 0.3s ease;
    width: 100%;
    min-width: 80px;
}

.step-item.active .step-line {
    background: #FF7141;
}

/* Verification Code Container */
.verification-code-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.verification-input {
    width: 60px;
    height: 60px;
    border: 2px solid #E5E5E5;
    border-radius: 12px;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #141414;
    background: #F8F8F8;
    transition: all 0.3s ease;
    outline: none;
    font-family: 'Be Vietnam Pro', sans-serif;
}

.verification-input:focus {

    background: #ebebeb;
    box-shadow: none;
}

.verification-input.filled {
    background: #ebebeb;
    border-color: #DAD6C8;
}

/* Masked input styling for dots */
.verification-input[data-value] {
    font-size: 32px;
    line-height: 1;
    letter-spacing: 0;
    font-weight: 900;
}

/* Countdown Timer */
.countdown-timer {
    font-size: 14px;
    color: #FF7141;
    margin-bottom: 20px;
    font-weight: 500;
    font-family: 'Be Vietnam Pro', sans-serif;
}

/* Resend Code */
.resend-code {
    font-size: 14px;
    color: #141414;
    font-weight: 500;
    font-family: 'Be Vietnam Pro', sans-serif;
}

.resend-code a {
    color: #FF7141;
    text-decoration: none;
    font-weight: 600;
}

.resend-code a:hover {
    text-decoration: underline;
}

/* Responsive Styles for Verification */
@media (max-width: 768px) {
    .step-progress-container {
        padding: 0px 15px;
        margin-top: 65px;
        width: 100%;
    }

    .step-progress {
        max-width: 450px;
        gap: 10px;
    }

    .step-line {
        height: 8px;
        min-width: 60px;
    }

    .verification-code-container {
        gap: 10px;
        margin-bottom: 25px;
    }

    .verification-input {
        width: 45px;
        height: 45px;
        font-size: 20px;
        border-radius: 8px;
    }

    .verification-input[data-value] {
        font-size: 28px;
    }

    .countdown-timer {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .resend-code {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .verification-code-container {
        gap: 8px;
    }

    .verification-input {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .verification-input[data-value] {
        font-size: 24px;
    }
}


/* Success Page Styles */
.success-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 30px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.success-icon {
    margin-bottom: 24px;
}

.selam-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.success-title {
    font-size: 32px;
    font-weight: 700;
    color: #141414;
    margin-bottom: 16px;
    font-family: 'Rubik One Regular', sans-serif;
}

.success-subtitle {
    font-size: 16px;
    color: #666661;
    margin-bottom: 24px;
    line-height: 1.4;
    font-family: 'Be Vietnam Pro', sans-serif;
}

.success-divider {
    width: 100%;
    height: 1px;
    background: #D7D4C5;
    margin: 24px 0;
}

.success-description {
    font-size: 14px;
    color: #666661;
    margin-bottom: 32px;
    line-height: 1.5;
    font-family: 'Be Vietnam Pro', sans-serif;
}

.success-btn {
    background: #ff6a3d;
    color: #fff;
    border: none;
    border-radius: 99px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-family: 'Be Vietnam Pro', sans-serif;
    border: 1.5px solid #141414;
}

.success-btn:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .success-card {
        padding: 32px 24px;
        margin: 0 16px;
        border-radius: 44px;
    }

    .selam-logo {
        width: 150px;
        height: 150px;
    }

    .success-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .success-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .success-description {
        font-size: 13px;
        margin-bottom: 28px;
    }

    .success-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .success-card {
        padding: 28px 20px;
        margin: 0 12px;
    }

    .selam-logo {
        width: 150;
        height: 150px;
    }

    .success-title {
        font-size: 24px;
    }

    .success-subtitle {
        font-size: 14px;
    }

    .success-description {
        font-size: 14px;
    }
}

/* Image Crop Modal Styles */
.image-crop-modal {
    border-radius: 24px;
    border: none;
}

.image-crop-modal .modal-header {
    border-bottom: 1px solid #E5E7EB;
    padding: 20px 24px;
}

.image-crop-modal .modal-title {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #141414;
}

.image-crop-modal .modal-body {
    padding: 24px;
    background: #F9FAFB;
}

.image-crop-modal .modal-footer {
    border-top: 1px solid #E5E7EB;
    padding: 20px 24px;
}

.crop-container {
    max-height: 400px;
    overflow: hidden;
    background: #000;
    border-radius: 12px;
}

.crop-container img {
    max-width: 100%;
    display: block;
}

/* Cropper.js custom styles */
.cropper-view-box,
.cropper-face {
    border-radius: 50%;
}

.cropper-view-box {
    box-shadow: 0 0 0 1px #39f;
    outline: 0;
}

.cropper-point {
    background-color: #39f;
}

.cropper-line {
    background-color: #39f;
}

.cropper-point.point-se {
    width: 10px;
    height: 10px;
    opacity: 1;
}

/* Profile photo preview styles */
.profile-photo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}