* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Quicksand', sans-serif;
}

body {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?q=80&w=1000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.main-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center; /* Ekranın düz ortasında olması üçün */
    padding: 20px;
}

.auth-card {
    width: 100%;
    max-width: 340px;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    text-align: center;
    position: relative;
}

.cow-header {
    width: 80px;
    height: 80px;
    background: #d8f3dc;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -70px auto 20px;
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.cow-header img {
    width: 50px;
}

h2 {
    color: #1b4332;
    margin-bottom: 25px;
    font-size: 22px;
}

.tg-input {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 15px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
}

.tg-input:focus {
    border-color: #2d6a4f;
    background: #fff;
}

.forgot-pass {
    text-align: right;
    margin: -10px 5px 20px 0;
}

.forgot-pass a {
    font-size: 12px;
    color: #2d6a4f;
    text-decoration: none;
    font-weight: 600;
}

.primary-btn {
    width: 100%;
    padding: 15px;
    background: #2d6a4f;
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(45, 106, 79, 0.3);
}

.primary-btn:active {
    transform: scale(0.97);
}

.auth-footer {
    margin-top: 25px;
    font-size: 14px;
    color: #666;
}

.auth-footer a {
    color: #2d6a4f;
    text-decoration: none;
    font-weight: 700;
}