:root {
    --simset-blue: #005DA9;
    --simset-dark-blue: #002b50;
    --simset-orange: #F39200;
    --bg-gray: #f0f4f8;
    --white: #ffffff;
    --text-main: #2c3e50;
    --text-muted: #7f8c8d;
}

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

body {
    background: linear-gradient(135deg, var(--simset-dark-blue) 0%, var(--simset-blue) 100%);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.login-container {
    width: 100%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-box {
    background: var(--white);
    width: 100%;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.login-logo {
    text-align: center;
    margin-bottom: 30px;
}

.login-logo img {
    max-width: 200px;
    height: auto;
    max-height: 60px;
    object-fit: contain;
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header h2 {
    color: var(--simset-dark-blue);
    font-size: 22px;
    margin-bottom: 8px;
}

.login-header p {
    color: var(--text-muted);
    font-size: 14px;
}

/* FORM STYLES */
.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    color: var(--simset-blue);
}

.input-wrapper input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    outline: none;
    transition: 0.3s;
    font-size: 15px;
}

.input-wrapper input:focus {
    border-color: var(--simset-blue);
    box-shadow: 0 0 8px rgba(0, 93, 169, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    margin-bottom: 25px;
}

.remember-me {
    color: var(--text-main);
    cursor: pointer;
}

.forgot-pass {
    color: var(--simset-blue);
    text-decoration: none;
    font-weight: 600;
}

.forgot-pass:hover {
    text-decoration: underline;
}

.btn-login {
    width: 100%;
    padding: 14px;
    background-color: var(--simset-orange);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-login:hover {
    background-color: #d47f00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 146, 0, 0.3);
}

.login-footer {
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.login-footer a {
    color: var(--simset-blue);
    text-decoration: none;
    font-weight: 600;
}

.support-info {
    margin-top: 15px;
    font-size: 12px;
    color: var(--text-muted);
}

.support-info i {
    margin-right: 5px;
}

.copyright {
    margin-top: 20px;
    color: rgba(255,255,255,0.6);
    font-size: 12px;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 480px) {
    .login-box {
        padding: 25px;
    }
}