
/* Reset + temel ayarlar */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #0f0f10;
    --panel: #0b0b0b;
    --muted: #bfbfbf;
    --accent: #ffd84d;
    --danger: #ff5757;
    --success: #2ecc71;
    --radius: 55px;
    --gap: 18px;
    --container-width: 1350px;
}
html,
body {
    height: 100%
}

body {
    background-image: url("../İmages/BG.png");  
    background-size: cover;
    background-color:#1c1c1e; 
    color: #ffffff;
     -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; 
    padding-top: 75px;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.navbar {
    width: 100%;
    padding: 40px 0;
    position: absolute;
    top: 0;
    z-index: 10;
}

.nav-container {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    width: 64px;
}

.nav-links {
 display: flex;
    list-style: none;
    gap: 32px;
    margin-left: 55px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-family: "Poppins", semibold;
    font-weight: 600;
    transition: 0.3s;
}

.nav-links a.active {
    font-weight: 700;
    font-family: "Poppins", bold;
text-shadow: 0 0 8px rgba(255, 255, 255, 0.24),
    0 0 14px rgba(255, 255, 255, 0.233);
    color: #ffffff;
}

.nav-links a:hover {
    color: #ffea62;
}

/* BUTTONS */
.nav-buttons a {
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-family: "Poppins", semibold;
    text-decoration: none;
    margin-left: 10px;
}

.login-btn {
    border: 2px solid #ffd84d;
    color: #ffd84d;
}

.login-btn:hover {
    color: black;
    background-color: #ffea62;
}


.register-btn {
    border: 2px solid #ffd84d;
    background-color: #ffd84d;
    color: black;
}

.register-btn:hover {
    border: 2px solid #ffd84d;
    color: #ffd84d;
    background: none;
}

.menu-toggle {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: white;
}

/* PAGE WRAP */
.page-wrap {
    width: 100%;
    max-width: var(--container-width);
    margin: 50px auto;
}



/* CARD (iki sütun) */
.card {
    display: flex;
    gap: var(--gap);
    background: linear-gradient(180deg, rgba(89, 0, 255, 0.2), rgba(89, 0, 255, 0.2));
    border-radius: var(--radius);
    border: 2px solid #ffd84d;
    overflow: hidden;
    align-items: stretch;
    box-shadow: 0 8px 30px rgba(2, 2, 2, 0.6);
}

/* SOL GÖRSEL */
.card-left {
    flex: 1 1 65%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-left img {
    width: 75%;
    height:100%;
    object-fit: cover;
    border-radius: 18px;
    display: flex;
}

/* SAĞ PANEL */
.card-right {
    width: 360px;
    max-width: 40%;
    background-color: var(--bg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    border-left: 2px solid #ffd84d;
}

.hgl-logo {
    width: 300px;
    display: block;
    margin: 20px auto 20px auto;
}

/* FORM */


.input-icon {
    position: absolute;
    left: 12px;
    top: 45%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 16px;
    opacity: 0.9;
}

.Password-text{
    text-align: center;
    font-family: "Poppins",regular;
    font-size: 16px
}
.Password-text a{
    color: var(--accent);
    text-decoration: none;
    margin-left: 8px;
}



/* butonlar */
.btn-Back {
    text-align: center;
    font-family: "Poppins",bold;
    width: 100%;
    max-width: 500px;
    background: #f7d75d;        /* Sarı renk */
    color: #1c1c1c;              /* Yazı rengi */
    font-size: 24px;
    font-weight: 700;
    border: none;
    padding: 5px ;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    cursor: pointer;
    box-shadow: 0px 8px 20px rgba(0,0,0,0.3);
    transition: 0.2s ease;
}


.btn-Back:hover {
    border: 2px solid rgba(255, 216, 77, 0.18);
    color: #ffd84d;
    background: none;
}

.icon svg {
    margin-top: 10px;
    fill: #1c1c1c;
}

.btn-Back:hover .icon svg path {
    fill: #ffd84d;
}

.btn-Back:active {
    transform: scale(0.97);
}




/* footer */
.site-footer {
    margin-top: 64px;
    background-color: #000000;
    padding: 10px 15px;

    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: var(body);
    margin-left: auto;
    margin-right: auto;
    gap: 300px;
}

.footer-left {
    font-family: "Poppins",semibold;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-size: 14px;
}

.footer-logo {
    width: 80px;
    opacity: 0.9;
}

.footer-right {
    font-family: "Poppins",medium;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.social-links a {
    font-family: "Poppins",medium;
    color: var(--muted);
    margin-left: 10px;
    text-decoration: none;
    font-size: 13px;
}

/* responsive */
@media (max-width:1024px) {
    .card-right {
        width: 360px;
        max-width: 38%;
    }
    .nav-links {
        gap: 15px;
    }
}

@media (max-width:1350px) {
    .card {
        flex-direction: column;
    }

    .card-left {
        order: 2;
    }

    .card-right {
        order: 1;
        width: 100%;
        max-width: 100%;
    }

    .page-wrap {
        padding-top: 10px;
    }

    .site-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 12px;
    }
    .menu-toggle { display: block; }
    
    .nav-links {
        display: none;
        flex-direction: column;
        background: rgba(0,0,0,0.5);
        width: 50%;
        padding: 20px 0;
        margin-left: 10px;
        text-align: center;
        margin-top: 5px;
    }
    .logo img {
        width: 40px;
    }
    .login-btn, .register-btn {
        padding: 6px 12px;
        font-size: 10px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-buttons {
        display: flex;
    }
}

@media (max-width:420px) {
    .hgl-logo {
        width: 140px;
    }

    .card-right {
        padding: 18px;
        border-radius: 14px;
    }

    .input-wrap input {
        padding: 11px 12px 11px 42px;
        font-size: 14px;
    }

    .btn {
        padding: 11px;
        font-size: 14px;
    }
}

.sr-only {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}