/* General Reset */
* {
    margin: 0;
    padding: 0;
}

/* Login Form Wrapper */
.login-form-wrap {
    position: fixed;
    width: 100%;
    height: 100%;
    background-image: url('https://www.turkmafya.com/m/img/arkaplan.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* Login Box */
.login-box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
}

/* Login Content */
.login-content-warp {
    padding: 30px;
    background: #505050d1;
    width: 400px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    border-radius: 35px;
    border-top: 5px solid #dac494;
}

/* Profile Form */
.profile-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-form img {
    width: 200px;
    height: 135px;
    object-fit: cover;
    border-radius: 40%;
}

.profile-form .profile-title {
    font-size: 26px;
    text-transform: capitalize;
    font-weight: 600;
    color: #dac494;
    padding: 20px 0;
}

/* Social Icons */
.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 16px;
    padding: 10px 0;
}

.social-icon img {
    width: 40px;
    height: 40px;
}

.social-icon span {
    color: #dac494;
    font-size: 16px;
    font-weight: 500;
}

.social-icon .social-icon-warp {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    text-decoration: none;
}

/* Button Sign */
.butn-sign {
    padding: 20px 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.butn-sign button {
    background-color: #e3d199;
    color: #2a2a2a;
    border: none;
    font-weight: 600;
    height: 45px; /* Adjusted for better touch target */
    width: 100%; /* Ensure full width */
    border-radius: 8px;
    font-size: 16px;
    text-transform: capitalize;
    border: 2px solid #d8c491;
    margin-bottom: 10px; /* Spacing between buttons */
    transition: background-color 0.3s, color 0.3s;
}

.butn-sign button:hover {
    background-color: #d8c491;
    color: #000;
    cursor: pointer;
}

/* Form */
form {
    width: 100%;
}

.email-input, .password-input {
    margin: 12px 0;
    position: relative;
}

.email-input input, .password-input input {
    height: 47px;
    border-radius: 8px;
    border: none;
    width: 100%;
    font-size: 16px;
    padding-left: 10px;
    box-sizing: border-box;
}

.email-input input:focus-visible, .password-input input:focus-visible {
    outline: none;
}

.email-input input::placeholder, .password-input input::placeholder {
    color: gray;
}

.forget-link-warp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}

.forget-link-warp .checkbox {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.forget-link-warp .checkbox input {
    width: 18px;
    height: 18px;
    border-radius: 4px;
}

.forget-link-warp span {
    font-size: 16px;
    color: #dcdcdc;
    font-weight: 500;
}

/* Responsive Design */
@media screen and (max-width: 576px) {
    .login-content-warp {
        width: 300px;
    }

    .profile-form img {
        width: 80px;
        height: 80px;
    }

    .profile-title {
        font-size: 22px;
    }

    .forget-link-warp span {
        font-size: 14px;
    }
}

@media screen and (max-width: 420px) {
    .login-content-warp {
        width: 270px;
    }

    .forget-link-warp span {
        font-size: 13px;
    }
}
