﻿/* ====================== LOGIN PAGE ====================== */
/* Main login container */
.login-container {
    display: flex;
    height: 100vh;
    width: 100%;
    flex-direction: row;
    overflow: hidden;
}

/* Login background image - LEFT SIDE */
.login-bg-image {
    flex: 0 0 50%;
    width: 50%;
    background: url('../images/back.jpg');
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    height: 100vh;
    position: relative;
}

/* Login background image overlay */
.login-bg-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.2);
}

/* Login box - RIGHT SIDE */
.login-box {
    flex: 0 0 50%;
    width: 50%;
    background: rgba(33, 37, 41);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 140px;
    overflow-y: auto;
}

/* Login box content */
.login-box-app-name {
    font-size: 32px;
    margin-bottom: 12px;
    color: white;
}

.login-box-app-slogan {
    font-size: 22px;
    margin: 0 0 30px;
    color: white;
}

.login-box-title {
    font-size: 32px;
    margin: 0 0 12px;
    color: white;
}

.form-group label {
    font-size: 22px;
    margin: 12px 0px;
    color: white;
}

.login-box input {
    padding: 12px;
    border: none;
    border-radius: 6px;
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    width: 100%;
    font-size: 16px;
}

.login-box input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-buttons {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 30px 0 0 0;
}

.login-box button {
    padding: 12px;
    border: none;
    border-radius: 6px;
    outline: none;
    color: white;
    background: rgba(2, 124, 142, 1);
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}

.login-box button:hover {
    background: rgba(2, 98, 117, 1);
}

.login-box-footer {
    font-size: 20px;
    margin-top: 30px;
    color: white;
}

