.hcp-login-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    background: #f7f9fc;
    border-radius: 10px;
    padding: 2rem;
    gap: 2rem;
    margin: 3rem auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Levý sloupec (text + registrace) */
.hcp-login-left {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem 1.5rem;
}

.hcp-login-left h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem !important;
    font-weight: 700;
}

.hcp-login-left p {
    margin: 0.5rem 0;
    line-height: 1.5;
}

.hcp-login-register {
    margin-top: 2rem;
}

.hcp-login-register .hcp-btn-register {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.8rem 1.4rem;
    border-radius: 6px;
    text-decoration: none;
    background: #ffffff;
    border: 2px solid #87189d;
    color: #87189d;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.2s ease-in-out;
    margin-top: 4rem;
}

.hcp-login-register .hcp-btn-register:hover {
    background: #87189d;
    color: #fff;
}

/* Pravý sloupec (formulář) */
.hcp-login-right {
    flex: 1;
    min-width: 320px;
    padding: 1rem 1.5rem;
}

.hcp-login-right h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hcp-message {
    margin-bottom: 1rem;
    padding: 0.8rem 1rem;
    border-radius: 6px;
    font-weight: 500;
}

.hcp-form p {
    margin-bottom: 1rem;
}

.hcp-form label {
    font-weight: 500;
}

.hcp-form input[type="email"],
.hcp-form input[type="password"] {
    width: 100%;
    padding: 0.6rem;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
    margin-top: 0.3rem;
    box-sizing: border-box;
    background: #fff;
}

.hcp-form input[type="checkbox"] {
    margin-right: 0.3rem;
}

.hcp-login-remember {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hcp-login-remember a.hcp-forgot {
    text-decoration: none;
    font-weight: 500;
}

.hcp-btn-login {
    display: block;
    width: 100%;
    padding: 0.8rem 1.4rem;
    border-radius: 6px;
    border: 2px solid #87189d;
    background: #87189d !important;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
    text-align: center;
}

.hcp-btn-login:hover {
    background: #fff !important;
    color: #87189d;
}

/* Hlásky */
.hcp-message.hcp-error {
    background: #ffe6e6;
    color: #b30000;
    padding: 0.8rem 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.hcp-message.hcp-success {
    background: #e7f6ec;
    border: 1px solid #9ed3ae;
    color: #116833;
}

/* Buttons and actions used on Forgot/Reset forms */
.hcp-form-actions {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem 1rem;
    flex-wrap: wrap;
}

.hcp-btn-primary {
    display: inline-block;
    background: #87189d !important;
    color: #fff;
    padding: 0.7rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    transition: all 0.2s ease-in-out;
}

.hcp-btn-primary:hover {
    background: #fff !important;
    color: #87189d;
}

.hcp-btn-link {
    display: inline-block;
    text-decoration: none;
    color: #87189d;
    font-weight: 500;
}

.hcp-btn-link:hover {
    color: #5c106d;
}

/* Responsivita */
@media (max-width: 768px) {
    .hcp-login-wrapper {
        flex-direction: column;
        padding: 1rem 1rem;
    }

    .hcp-login-left,
    .hcp-login-right {
        padding: 1rem;
    }
}