* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-image: url('images/Background.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    height: 100%;
    color: white;
}

.header {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    width: 375px;
    height: 136px;
}

h2 {
    margin-top: 10px;
    font-size: 40px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0px #F9285D;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.input-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.input-field {
    padding: 10px;
    width: 300px;
    border-radius: 8px;
    border: none;
}

.wishlist-btn {
    padding: 10px 20px;
    border-radius: 8px;
    background-color: #3568F6;
    color: white;
    border: none;
    cursor: pointer;
}

.wishlist-btn:hover {
    background-color: #7289da;
}

.content p {
    font-size: 16px;
    max-width: 400px;
    margin: 80px auto 20px auto;
}

/* Footer styling */
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: url('images/FooterBackground.png');
    background-size: cover;
    padding: 10px 20px;
    width: 100%;
    position: absolute;
    bottom: 0;
}

.footer-logo {
    width: 82px;
}

.footer-center {
    color: white;
    font-size: 14px;
}

.footer-right {
    display: flex;
    gap: 32px;
    margin-right: 48px;
}

.social-icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
}
.input-field.error {
    border: 2px solid red;
}

.error-message {
    color: white;
    font-size: 14px;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    float: left;

}

.error-message i {
    color: red;
}

.discord-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    margin-top: 130px;
}

.discord-logo {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
}

.discord-btn {
    text-decoration: none;
}

.discord-btn button {
    background-color: #3568F6;
    width: 148px;
    height: 44px;
    color: white;
    margin-top: 31px;
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.discord-btn button:hover {
    background-color: #7289da;
}

.discord-section p {
    color: white;
    font-size: 16px;
    margin-top: 31px;
    text-align: center;
}

#language-container {
    position: absolute;
    top: 10px; /* Ãœstten uzaklÄ±k (isteÄŸe gÃ¶re ayarlayÄ±n) */
    right: 10px; /* SaÄŸdan uzaklÄ±k (isteÄŸe gÃ¶re ayarlayÄ±n) */
}

#languageSwitcher {
    padding: 5px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
}

.terms{
    color: #F5778D;
    text-decoration: none;
}
.privacy{
    color: #F5778D;
    text-decoration: none;
}

.terms-privacy{
    margin-top: 8px;
}

.mail{
    color:#F5778D;
    text-decoration: none;
}
@media only screen and (max-width: 768px) {
    /* Genel dÃ¼zen ayarlarÄ± */
    body {
        flex-direction: column;
        padding: 0px;
        background-size: auto;
        background-position: auto;
    }

    .container {
        padding: 0 20px;
    }

    /* BaÅŸlÄ±k ve logo */
    .header {
        margin-top: 20px;
    }

    .logo {
        width: 200px;
        height: auto;
    }

    h2 {
        font-size: 24px;
    }

    /* Input ve butonlar */
    .input-field {
        width: 100%;
        padding: 8px;
        font-size: 14px;
    }

    .wishlist-btn {
        width: 100%;
        padding: 10px;
        font-size: 14px;
    }

    .input-container {
        flex-direction: column;
        gap: 10px;
    }

    .content p {
        font-size: 14px;
        margin: 20px auto;
        max-width: 100%;
    }

    /* Footer dÃ¼zeni */
    footer {
        padding: 10px 0;
        margin: 0; 
        width: 100%; 
        position: fixed; 
        bottom: 0;
        left: 0; 
        right: 0; 
        height: 80px; 
    }

    .footer-center {
        font-size: 12px; 
    }

    .footer-right {
        margin-right: 16px; 
    }

    .footer-left {
        margin-left: 16px; 
    }

    .social-icon {
        width: 20px;
        height: 20px;
    }

    /* Discord bÃ¶lÃ¼mÃ¼ */
    .discord-section {
        margin-top: 50px;
    }

    .discord-logo {
        width: 80px;
        height: auto;
    }

    .discord-btn button {
        width: 100%;
        font-size: 14px;
    }

    .discord-section p {
        font-size: 14px;
    }
}