﻿
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1d4a6b, #3f8e87);
    overflow: hidden; 
}


.login-card {
    background-color: #ffffff;
    padding: 3rem; 
    border-radius: 20px; 
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
}


.input-group-text {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
}

.form-control {
    height: 50px; 
    border-left: none; 
    padding-left: 0;
}

    .form-control:focus {
        box-shadow: none; 
        border-color: #3f8e87;
    }


.btn-login {
    background-color: #1d4a6b;
    color: white;
    font-weight: 600;
    padding: 12px;
    border-radius: 50px; 
    transition: all 0.3s ease; 
}

    .btn-login:hover {
        background-color: #163a54;
        color: white;
        transform: translateY(-2px); 
    }


.forgot-password-link {
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

    .forgot-password-link:hover {
        color: #1d4a6b;
    }



.branding-side {
    color: white;
}

.branding-title {
    font-size: 4rem; /* "HRMoni" yazısının boyutu */
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2); 
}
