﻿/* login.html custom styles */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}
body {
    background: linear-gradient(135deg, #5dade2, #58d68d);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.btn-teal-gradient {
    background: linear-gradient(135deg, #2980b9, #27ae60);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease; /* yumuşak geçiş için */
    border: none;
}

    .btn-teal-gradient:hover {
        filter: brightness(1.1); /* biraz daha parlak olur */
        transform: translateY(-2px); /* hafif yukarı hareket */
        box-shadow: 0 4px 15px rgba(0,0,0,0.2); /* hover gölgesi */
    }

.loginBtn {
    background-color: rgb(35, 183, 229);
    color: white;
}

.login-card {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(60px); /* cam efekti */
    border: 2px solid rgba(255, 255, 255, 0.2);
    max-width: 850px;
    height: 500px;
    justify-content: center;
    padding: 0 2.5rem;
}