/* Genel ayarlar */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to right, #080808, #080808);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header ayarları */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border:none;
    outline: none;
    scroll-behavior: smooth;  
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
:root{
    
    --bg-colour: #080808;  
    --second-bg-colour: black;
    --text-color: white;
    --main-color: #f3a7f1;
    
}
.logo img {
    width: 120px; /* Mobilde kÃ¼Ã§Ã¼k logo */
}
•⁠  ⁠{
    box-sizing: border-box;
}

.header {
position: fixed;
top: 0;
left: 0;
width: 100%;
padding: 2rem 5%;
background: var(--bg-colour);
backdrop-filter: blur(10px);
display: flex;
justify-content: space-between;
align-items: center;
z-index: 5;
/* width: 100%; navbar iÃ§in de geÃ§erli */
}
.logo {
    font-size: 3rem;
    color: var(--text-color);
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s ease;
    display: flex;  /* Esnek kutu modelini kullanarak */
    justify-content: center;  /* Yatayda ortalamak */
    align-items: center;  /* Dikeyde ortalamak */
}

.logo img {
    max-width: 100%;  /* Resmin boyutunu esnetir */
    height: auto;
    width: 150px; /* Ä°stediÄŸiniz logo boyutuna gÃ¶re ayarlayÄ±n */
}

.logo:hover {
    transform: scale(1.1);
    transition: 0.3s;
}

.logo span{
    color: var(--main-color);
    text-shadow: 0 0 25px var(--main-color), 0 0 50px var(--main-color), 0 0 75px var(--main-color);
    font-size: 2.3rem;
}
.navbar {
display: flex;
flex-wrap: wrap;
justify-content: flex-end;
width: 100%;
margin-left: auto;  /* SaÄŸ tarafa itme */
}

.navbar a {
font-size: 1.2rem;
color: var(--text-color);
margin-right: 3rem;
font-weight: 500;
transition: 0.3s ease;
text-decoration: none; 
border-bottom: none; 
}

.navbar a:hover {
color: var(--main-color); /* Ãœzerine gelince pembe */
font-size: 2rem;  /* Font bÃ¼yÃ¼mesi */
border-bottom: 3px solid var(--main-color);  /* Alt Ã§izgi pembe */
}
.navbar a.active {
color: #f3a7f1; /* Aktif sayfa yazÄ±sÄ± pembe */
font-size: 1.8rem;  /* Font bÃ¼yÃ¼mesi */
border-bottom: 3px solid #f3a7f1; /* Alt Ã§izgi pembe */
}
#menu-icon{
font-size: 3.6rem;
color: var(--main-color);
cursor: pointer;
display: none;
}
.footer{
    position: relative;
    bottom: 0;
    width: 100%;
    padding: 40px 0;
    background-color: var(--bg-colour);
}
.footer .social{
    text-align: center;
    padding-bottom: 25px;
    color: var(--main-color);
}

.footer .social a{
    font-size: 25px;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    width: 42px;
    height: 42px;
    line-height: 42px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    margin: 0 10px;
    transition: 0.3s ease-in-out;
}
.footer .social a:hover{
    transform: scale(1.2)translateY(-10px);
    background-color: var(--main-color);
    color: #080808;
    box-shadow: 0 0 25px var(--main-color);
}
.footer ul{
    margin-top: 0;
    padding: 0;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: center;
}
.footer ul li a{
    color: var(--text-color);
    border-bottom: 3px solid transparent;
    transition: 0.3s ease-in-out;
}
.footer ul li a:hover{
    border-bottom: 3px solid var(--main-color);
}
.footer ul li {
    display: inline-block;
    padding: 0 15px;
}
.footer .copyright{
    margin-top: 50px;
    text-align: center;
}
/* Hamburger menüsü */
#menu-icon {
    display: none;
    cursor: pointer;
}
/* Forgot Password bölümü */
.forgot-password {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    color: #fff;
    margin-top: 100px; /* Formu biraz aşağı kaydırdım */
}

.forgot-password h2 {
    margin-bottom: 40px;
    font-size: 32px;
    color: white;
}

/* Form */
#forgotPasswordForm {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 400px;
    box-shadow: 0 0 20px #f3a7f1;
}

.formgroup {
    position: relative;
    margin-bottom: 25px;
}

.formgroup input {
    width: 100%;
    padding: 12px 10px;
    background: transparent;
    border: none;
    border-bottom: 2px solid #ccc;
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.formgroup input:focus {
    border-color: #f3a7f1;
}

.formgroup span {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #f3a7f1;
    pointer-events: none;
    transition: 0.3s;
}

.formgroup input:focus + span,
.formgroup input:valid + span {
    top: -10px;
    font-size: 12px;
    color: #f3a7f1;
}

/* Buton */
button {
    width: 100%;
    padding: 12px 0;
    background-color:  #f3a7f1;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color:  #f3a7f1;
}

/* Mesaj */
#message {
    margin-top: 20px;
    font-size: 16px;
    text-align: center;
}

.footer .copyright {
    margin-top: 20px;
    font-size: 14px;
    color: white;
}

/* Responsive tasarım */
@media screen and (max-width: 768px) {
    .navbar {
        display: none;
    }
    #menu-icon {
        display: block;
        z-index: 20;
        font-size: 2rem;
        cursor: pointer;
        color: #fff;
    }
    
    /* SAĞDAN AÇILAN MENÜ */
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background-color: #111;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start; /* Yazıları en yukarı hizalar */
      
        gap: 4rem; /* Elemanlar arası mesafe */
        transition: all 0.3s ease;
        z-index: 15;
        overflow-y: auto;
   
        padding: 5rem 1.5rem 1.5rem 1.5rem; /* Üst boşluğu artırdık */
    }
    
    .navbar a {
        font-size: 1.5rem; /* Daha büyük yazı */
        color: #f3a7f1;
        text-decoration: none;
    }
    
    /* MENÜ AÇILDIĞINDA GÖRÜNÜR YAP */
    .navbar.active {
        right: 0;
    }
    
 .logo {
        font-size: 1.5rem;
    }

    #menu-icon {
        display: block;
        color: #fff;
        font-size: 30px;
        cursor: pointer;
    }

    .forgot-password h2 {
        font-size: 28px;
    }

    .footer .list {
        margin-top: 20px;
    }
}

@media screen and (max-width: 480px) {
    .forgot-password {
        padding: 25px;
    }

    .formgroup input {
        font-size: 14px;
    }

    button {
        font-size: 14px;
    }
    #menu-icon {
        display: block;
        z-index: 20;
        font-size: 2rem;
        cursor: pointer;
        color: #fff;
    }
    
    /* SAĞDAN AÇILAN MENÜ */
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background-color: #111;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start; /* Yazıları en yukarı hizalar */
      
        gap: 4rem; /* Elemanlar arası mesafe */
        transition: all 0.3s ease;
        z-index: 15;
        overflow-y: auto;
   
        padding: 5rem 1.5rem 1.5rem 1.5rem; /* Üst boşluğu artırdık */
    }
    
    .navbar a {
        font-size: 1.5rem; /* Daha büyük yazı */
        color: #f3a7f1;
        text-decoration: none;
    }
    
    /* MENÜ AÇILDIĞINDA GÖRÜNÜR YAP */
    .navbar.active {
        right: 0;
    }
    
 .logo {
        font-size: 1.5rem;
    }
}