﻿:root {
    --primary: #822ccd;
    --secondary: #ae8dcf;
    --bg: #F9FAFB;
    --text: #111827;
    --muted: #6B7280;
    --card: #FFFFFF;
    --radius: 14px;
    --shadow: 0 6px 18px rgba(0,0,0,0.08);
    font-family: 'Inter', system-ui, sans-serif;
}

.form-control:focus {
    outline: none;
    box-shadow: none;
}

.form-select:focus {
    outline: none;
    box-shadow: none;
}

main {
    height: 100vh;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    background: var(--bg);
    color: var(--text);
}

.containerLogin {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
}

.left {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

    .left h1 {
        font-size: 36px;
        margin: 0;
    }

    .left p {
        margin-top: 12px;
        max-width: 480px;
        font-size: 15px;
        line-height: 1.5;
    }

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    z-index: 1;
}

    .shape.one {
        width: 240px;
        height: 240px;
        top: 20px;
        left: -80px;
    }

    .shape.two {
        width: 320px;
        height: 320px;
        bottom: -100px;
        right: -100px;
    }

.content {
    z-index: 2;
    color: white;
    margin: 23% 0% 0 25%;
}

.right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.card {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 36px;
    width: 100%;
    max-width: 400px;
}

.logo {
    margin-top: 20px;
    height: 80px;
    text-align: center;
    margin-bottom: 10px;
}

    .logo img {
        height: 100%;
        width: auto;
    }

h2 {
    margin: 0 0 6px 0;
    font-size: 24px;
    text-align: center;
}

.subtitle {
    color: var(--muted);
    font-size: 14px;
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 16px;
}

label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
}

input {
    width: -webkit-fill-available;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #E5E7EB;
    font-size: 14px;
}

.actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 13px;
}

.btn {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
}

    .btn:hover {
        background: var(--secondary) !important;
    }

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(30,58,138,0.3);
}

.btn-secondary {
    background: transparent;
    border: 1px solid #D1D5DB;
    margin-top: 10px;
}

.footer {
    text-align: center;
    font-size: 13px;
    margin-top: 16px;
    color: var(--muted);
}

    .footer a {
        color: var(--primary);
        text-decoration: none;
    }

/* Responsive */
@media (max-width: 900px) {
    .container {
        grid-template-columns: 1fr;
    }

    .left {
        display: none;
    }
}
