

.log-login-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding-top: 30px;
}

.log-login-card {
    width: 550px;
    max-width: 100%;
    background: white;
    padding: 30px 32px;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    margin-top: 115px;
}

.log-login-logo {
    font-family: "Lobster", cursive;
    font-size: 32px;
    color: #007782;
    margin-bottom: 10px;
}

.log-login-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.log-form-group {
    text-align: left;
    margin-bottom: 14px;
}

.log-form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
    color: #444;
}

.log-form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    transition: 0.2s;
}

.log-form-group input:focus {
    border-color: #007782;
    outline: none;
    box-shadow: 0 0 0 2px #e1f5f4;
}

.log-phone-input-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 8px 10px;
    background-color: #f8f9fa;
    width: 100%;
    box-sizing: border-box;
}

.log-phone-input-wrapper img.log-phone-icon {
    width: 20px;
    height: 14px;
    border-radius: 2px;
}

.log-phone-input-wrapper .log-phone-code {
    font-weight: bold;
    color: #333;
}

.log-phone-input-wrapper input[type="tel"] {
    border: none;
    outline: none;
    background: transparent;
    flex-grow: 1;
    min-width: 0;
    font-size: 16px;
    width: auto;
}

.log-error-text {
    font-size: 12px;
    color: red;
    margin-top: 5px;
}

.log-forgot-link {
    display: block;
    text-align: right;
    font-size: 13px;
    margin-top: 14px;
    margin-bottom: 14px;
    color: #007782;
    text-decoration: none;
}

.log-login-button {
    width: 100%;
    background-color: #007782;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.log-login-button:hover {
    background-color: #005e66;
}

.log-social-divider {
    margin: 20px 0 15px;
    text-align: center;
    position: relative;
}

.log-social-divider::before,
.log-social-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background-color: #ccc;
}

.log-social-divider::before {
    left: 0;
}

.log-social-divider::after {
    right: 0;
}

.log-social-divider span {
    background: white;
    padding: 0 10px;
    color: #777;
    font-size: 13px;
}

.log-social-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.log-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: 0.2s;
    border: 1px solid #ccc;
}

.log-social-btn.log-google {
    background-color: #fff;
    color: #333;
}

.log-social-btn.log-google img {
    width: 20px;
    margin-right: 8px;
}

.log-register-link {
    margin-top: 18px;
    font-size: 14px;
}

.log-register-link a {
    color: #007782;
    text-decoration: none;
    font-weight: 600;
}

#phoneLoginForm {
    display: block;
    margin-top: 25px;
}

#emailLoginForm {
    display: none;
}

/* Orijinal CSS kodların olduğu yer */

/* Mobil ve Tablet için Medya Sorguları */
@media (max-width: 991px) {
    .log-login-card {
        width: 90%;
        padding: 24px 20px;
        margin-top: 80px;
        border-radius: 12px;
    }

    .log-login-title {
        font-size: 18px;
    }

    .log-form-group input,
    .log-phone-input-wrapper input[type="tel"] {
        font-size: 15px;
    }

    .log-phone-input-wrapper {
        padding: 6px 8px;
    }

    .log-login-button {
        padding: 10px;
        font-size: 15px;
    }

    .log-social-btn {
        font-size: 14px;
        padding: 9px;
    }

    .log-register-link {
        font-size: 13px;
    }

    .log-login-wrapper {
        align-items: center;
        padding-top: 10px;
    }
}

/* Yalnızca Mobil (küçük telefonlar) için */
@media (max-width: 575px) {
    .log-login-logo {
        font-size: 26px;
    }

    .log-login-title {
        font-size: 17px;
    }

    .log-login-card {
        padding: 20px 15px;
        margin-top: 60px;
    }

    .log-social-divider::before,
    .log-social-divider::after {
        width: 35%;
    }

    .log-phone-input-wrapper img.log-phone-icon {
        width: 16px;
        height: 12px;
    }

    .log-forgot-link {
        font-size: 12px;
    }
}
