﻿/* css/auth_style.css */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap&subset=latin-ext');


:root {
    --background-color: #1a1a1a;
    --primary-text-color: #f0f0f0;
    --accent-color: #00ff85;
    --accent-color-dark: #00b35e;
    --font-family: 'Poppins', sans-serif;
}
/* Dokunma Vurgu Rengini Kapatma */
* {
    -webkit-tap-highlight-color: transparent;
}

body {
    margin: 0;
    font-family: var(--font-family);
    color: var(--primary-text-color);
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('../uploads/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.auth-container {
    width: 100%;
    max-width: 420px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}
.home-logo a {
    display: inline-block;
    margin-bottom: 0.1px;
}
.home-logo img {
    width: 240px; /* LOGO BOYUTU BÜYÜTÜLDÜ */
    opacity: 0.8;
    transition: opacity 0.3s ease;
}
.home-logo img:hover {
    opacity: 1;
}
.auth-container h1 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
}
.auth-form input {
    font-family: var(--font-family);
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid transparent;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}
.auth-form input:focus {
    outline: none;
    border-color: var(--accent-color);
}
.submit-button {
    font-family: var(--font-family);
    width: 100%;
    background: var(--accent-color);
    color: #111;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 133, 0.4);
}
.submit-button:hover {
    background: white;
    color: black;
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(0, 255, 133, 0.7);
}
.message {
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}
.error { background-color: rgba(255, 100, 100, 0.2); color: #ffc8c8; }
.success { background-color: rgba(100, 255, 100, 0.2); color: #c8ffc8; }
.switch-form-link {
    margin-top: 25px;
    font-size: 0.9rem;
}
.switch-form-link a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}
.switch-form-link a:hover {
    text-decoration: underline;
}