:root {
    --primary-orange: #f89d5c;
    --primary-blue: #1b7bb3;
    --text-muted: #6c757d;
    --input-border: #ced4da;
}

* {
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.login-container {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

/* Left Column */
.login-visual {
    flex: 1 1 50%;
    max-width: 50%;
    background-color: var(--primary-orange);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


.circles {
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, transparent 20%, rgba(255, 255, 255, 0.1) 21%, transparent 22%) 0 0,
        radial-gradient(circle, transparent 30%, rgba(255, 255, 255, 0.1) 31%, transparent 32%) 0 0,
        radial-gradient(circle, transparent 40%, rgba(255, 255, 255, 0.1) 41%, transparent 42%) 0 0,
        radial-gradient(circle, transparent 50%, rgba(255, 255, 255, 0.1) 51%, transparent 52%) 0 0;
    background-size: 100% 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* More specific concentric circles layout */
.concentric-circles {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.circle-1 {
    width: 350px;
    height: 350px;
}

.circle-2 {
    width: 550px;
    height: 550px;
}

.circle-3 {
    width: 750px;
    height: 750px;
}

.circle-4 {
    width: 950px;
    height: 950px;
}


.visual-image {
    position: relative;
    z-index: 2;
    max-width: 80%;
    height: auto;
}

/* Right Column */
.login-form-container {
    flex: 1 1 50%;
    max-width: 50%;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 10%;
}


.login-form-wrapper {
    width: 100%;
    max-width: 400px;
}

.logo-container {
    text-align: center;
    margin-bottom: 2rem;
}

.logo-img {
    max-width: 200px;
}

.welcome-text {
    color: #5c6c75;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--input-border);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}


.password-toggle {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.password-toggle:hover {
    color: var(--primary-blue);
}

.password-toggle svg {
    width: 20px;
    height: 20px;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 0.85rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
}

.forgot-password {
    color: var(--text-muted);
    text-decoration: none;
}

.btn-login {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-login:hover {
    background-color: #16608c;
}

/* Responsive */
@media (max-width: 992px) {
    .login-visual {
        display: none;
    }

    .login-form-container {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 5%;
    }
}