html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #f0f0f0; /* Hafif grimsi arka plan */
    font-family: Arial, sans-serif;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

@media (max-width: 768px) {
    .page-wrapper {
        min-height: auto;
    }
}

.container {
    max-width: 800px;
    margin: 10px auto;
    width: 100%;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    padding: 20px 15px;
    box-sizing: border-box;
    flex: 1 0 auto;
}

@media (max-width: 768px) {
    .container {
        margin: 10px 15px;
        width: calc(100% - 30px);
        padding: 10px 15px;
    }
}

.logo-container {
    position: absolute;
    top: 20px;
    left: 30px;
}

.logo-container-right {
    position: absolute;
    top: 20px;
    right: 30px;
}

.right-text {
    position: absolute;
    top: 60px;
    right: 30px;
    text-align: right;
    font-size: 12px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .logo-container {
        position: relative;
        top: 0;
        left: 0;
        text-align: center;
        margin: 0 auto;
        padding: 0;
    }
    
    .logo-container-right {
        display: none;
    }
    
    .right-text {
        position: relative;
        top: 0;
        right: 0;
        text-align: left;
        margin: 10px 0;
        background-color: #f1f2f3;
        padding: 10px 12px;
        border-radius: 4px;
        width: calc(100% - 2px);
        box-sizing: border-box;
    }
}

.right-text p {
    margin: 1px 0;
    color: #333;
}

.right-text p:first-child {
    font-size: 12px;
    margin-bottom: 2px;
}

.logo {
    max-width: 250px;
    height: auto;
    display: block;
    margin: 0;
}

.login-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    width: 100%;
    padding-bottom: 30px;
}

@media (max-width: 768px) {
    .login-section {
        margin-top: 80px;
    }
    
    .login-form {
        width: 95%;
        padding-left: 0;
    }
}

.login-buttons {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 20px;
    margin-top: -50px;
    flex-wrap: nowrap;
}

@media (max-width: 768px) {
    .login-buttons {
        margin-top: -30px;
    }
}

.separator-line {
    width: 95%;
    height: 2px;
    background-color: #ddd;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .separator-line {
        display: none;
    }
}

.login-btn {
    background-color: white;
    border: 1px solid #d9d9d9;
    border-radius: 5px;
    padding: 11px 12px;
    font-size: 12px;
    color: #888;
    cursor: pointer;
    min-width: 160px;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 0;
}

@media (max-width: 768px) {
    .login-buttons {
        flex-wrap: wrap;
        flex-direction: column;
    }
    
    .login-btn {
        min-width: unset;
        width: 100%;
        margin-bottom: 5px;
        font-size: 11px;
        padding: 10px;
    }
}

.login-btn:hover {
    border-color: #bfbfbf;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-btn {
    padding-right: 25px;
    position: relative;
}

.dropdown-icon {
    font-size: 10px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.info-text {
    width: 90%;
    text-align: left;
    margin-top: -50px;
    color: #333;
    font-size: 14px;
    line-height: 1.2;
    padding-left: 8px;
}

.info-text p {
    margin: 2px 0;
}

.help-link {
    color: #0670b3;
    text-decoration: none;
    font-weight: 600;
}

.help-link:hover {
    text-decoration: underline;
}

/* Form Stilleri */
.login-form {
    width: 85%;
    margin: 30px auto 10px;
    padding-left: 10px;
}

.form-row {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    position: relative;
}

.form-row label {
    flex: 0 0 130px;
    text-align: right;
    padding-right: 40px;
    font-weight: 700;
    color: #333;
    font-size: 13px;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        align-items: flex-start;
        width: calc(100% - 30px);
        margin-left: 15px;
        margin-right: 15px;
    }
    
    .form-row label {
        flex: 0 0 auto;
        text-align: left;
        padding-right: 0;
        margin-bottom: 8px;
        width: 100%;
    }
}

.required {
    color: #999;
    margin-right: 3px;
}

.input-wrapper {
    position: relative;
    flex: 1;
    margin-left: 20px;
}

@media (max-width: 768px) {
    .input-wrapper {
        width: 100%;
        margin-left: 0;
    }
}

.form-control {
    width: 95%;
    padding: 12px 40px 12px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.icon-container {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 8px;
}

.icon {
    cursor: pointer;
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.keyboard-icon {
    width: 35px;
    height: 35px;
}

.eye-icon {
    position: relative;
    top: 2px;
}

.password-info {
    display: flex;
    margin-top: -5px;
    margin-bottom: 5px;
    padding-left: 190px;
    padding-right: 30px;
}

@media (max-width: 768px) {
    .password-info {
        padding-left: 15px;
        padding-right: 15px;
        margin-top: -5px;
        text-align: left;
    }
}

.password-info p {
    color: #666;
    font-size: 13px;
    font-weight: 600;
    margin: 0;
    text-align: left;
}

.blue-text {
    color: #2056ae;
}

.forgot-password-container {
    text-align: right;
    padding-right: 30px;
    margin-top: 25px;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .forgot-password-container {
        text-align: center;
        padding-right: 0;
    }
}

.forgot-password {
    color: #2056ae;
    font-size: 15px;
    text-decoration: underline;
    font-weight: 600;
}

.login-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .login-buttons {
        margin-top: 20px;
        margin-bottom: 20px;
        width: calc(100% - 30px);
        margin-left: 15px;
        margin-right: 15px;
        flex-direction: row;
        gap: 10px;
        justify-content: center;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .btn-cancel, .btn-login {
        padding: 10px 20px;
        font-size: 14px;
        min-width: auto;
    }
}

.btn {
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    outline: none;
    box-sizing: border-box;
}

.btn-cancel {
    background-color: #f0f0f0;
    color: #999;
    border: 1px solid #ddd;
    padding-left: 40px;
    padding-right: 40px;
}

.btn-login {
    background-color: #2979d0;
    color: white;
    min-width: 120px;
    display: inline-block;
    box-sizing: border-box;
    padding: 12px 20px;
}

.header-text {
text-align: center;
margin-top: 120px;
font-size: 18px;
}

.footer {
    width: 100%;
    padding: 20px 0;
    border-top: 1px solid #eee;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
    z-index: 10;
    position: relative;
    background-color: white;
}

.footer-logos {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-right: 20px;
    background-color: white;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        padding: 10px;
    }
    
    .footer-logos {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .footer-text {
        text-align: center;
        font-size: 11px;
    }
}

.footer-logo {
    height: 35px;
    width: auto;
    margin-right: 15px;
}

.footer-logo:last-child {
    height: 20px;
}

.footer-text {
    color: #666;
    font-size: 12px;
}

.header-text p {
    margin: 5px 0;
}

.header-text a {
    color: #3498db;
    text-decoration: none;
}

.header-text a:hover {
    text-decoration: underline;
}

.auth-buttons-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    padding: 20px 30px;
    margin-top: 80px;
    margin-bottom: 0;
}

.auth-empty-button {
    background-color: white;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    padding: 12px 24px;
    font-size: 13px;
    color: #555;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.auth-empty-button:hover {
    border-color: #999;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .auth-buttons-wrapper {
        display: none;
    }

    .auth-empty-button {
        padding: 10px 16px;
        font-size: 12px;
        flex: 1;
        min-width: 120px;
    }
}
