﻿
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.login-page {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a2351 0%, #1a4c8a 100%);
    background-image: url('background.png');
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}



.containercustom {
    display: flex;
    max-width: 600px;
    height: 450px;
    width: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}





.left-section {
    flex: 0 0 50%;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

    .left-section img {
        max-width: 100%;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.right-section {
    flex: 0 0 50%;
    padding: 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo {
    text-align: center;
    margin-bottom: 20px;
}

.logo-text {
    font-size: 36px;
    font-weight: bold;
    color: #0a2351;
}

    .logo-text .on {
        color: #0a2351;
    }

    .logo-text .s {
        color: #ff6b35;
    }

.logo-subtitle {
    font-size: 11px;
    color: #666;
    margin-top: 5px;
}

h2 {
    text-align: center;
    color: #0a2351;
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 600;
}

.form-group {
    margin-bottom: 20px;
}

.input-wrapper {
    position: relative;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 12px 40px 12px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
}

    input[type="text"]:focus,
    input[type="password"]:focus {
        outline: none;
        border-color: #0a2351;
    }

.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.forgot-password {
    color: #0a2351;
    text-decoration: none;
    font-size: 14px;
}

    .forgot-password:hover {
        text-decoration: underline;
    }

.login-btn {
    width: 100%;
    padding: 12px;
    background: #0a2351;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    .login-btn:hover {
        background: #1a4c8a;
    }

.register-link {
    text-align: center;
    margin-top: 20px;
    color: #666;
    font-size: 13px;
}

    .register-link a {
        color: #0a2351;
        text-decoration: none;
        font-weight: 600;
    }

        .register-link a:hover {
            text-decoration: underline;
        }

.sidebar {
    position: fixed;
    right: 40px;
    top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.sidebar-logo {
    font-size: 32px;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
}

    .sidebar-logo .on {
        color: white;
    }

    .sidebar-logo .s {
        color: #ff6b35;
    }

.sidebar-link {
    color: white;
    text-decoration: none;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

    .sidebar-link:hover {
        color: #ff6b35;
    }

.sidebar-text {
    color: white;
    font-size: 13px;
    text-align: right;
    margin-top: 30px;
    max-width: 180px;
    line-height: 1.8;
}

    .sidebar-text .strength {
        color: #ff6b35;
        font-weight: bold;
        font-size: 20px;
        display: block;
        margin: 5px 0;
    }

@media (max-width: 968px) {
    .left-section {
        /*display: none;*/
    }

    .sidebar {
        display: none;
    }
}

@media (max-width: 600px) {
    .right-section {
        padding: 40px 30px;
    }
}



.input-box-login {
    padding: 0.2rem 0.75rem !important;
}
