﻿html, body {
    height: 100%;
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: url('/alkform/img/muhasebe-background.jpg') no-repeat center center fixed;
    background-size: cover;
    overflow: hidden;
}

.login-container {
    height: 100%;
    display: flex;
    align-items: center;
}

.login-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    width: 420px;
    margin-left: 40px;
    animation: slideIn 1s ease-out forwards;
}

@media (max-width: 768px) {
    .login-wrapper {
        margin-left: 0px;
    }
}

.login-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 0 12px 12px 0;
    width: 100%;
    box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.3);
    border-left: 10px solid #33778a;
}

.login-logo {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.btn-login,
.btn-login:hover,
.btn-login:active,
.btn-login:focus {
    background-color: #4f889b !important;
    color: #e2e2e2 !important;
    box-shadow: none !important;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

