/* Hola Enterprise Hub - Authentic Architecture Authentication View stylesheet framework */
.hola-auth-viewport-wrapper {
    width: 100%;
    min-height: 100vh;
    /*background-color: #222222;*/ /* Outer dark layout background frame border overlay color */
    display: flex;
    justify-content: center;
    align-items: center;
    /*padding: 20px;*/
    box-sizing: border-box;
}

.hola-auth-window-container {
    width: 100%;
    max-width: 960px;
    min-height: 580px;
    background-color: #ffffff; /* Crisp white clean paper presentation platform sheet */
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border-radius: 4px;
    display: flex;
    overflow: hidden;
}

/* Form block content workspace container left section layout metrics */
.hola-auth-form-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 40px 40px 40px;
    box-sizing: border-box;
}

.form-wrapper-inner {
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
}

.hola-auth-error-notice {
    background-color: #fff2f2;
    border-left: 4px solid #f44336;
    color: #c62828;
    padding: 12px;
    font-size: 13px;
    margin-bottom: 20px;
    border-radius: 4px;
}

/* Input layout specifications */
.hola-input-group-wrapper {
    margin-bottom: 16px;
    width: 100%;
}

.password-relative-wrapper {
    position: relative;
}

.hola-custom-input-field {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    color: #2c3e50;
    background-color: #ffffff;
    border: 1.5px solid #7f8c8d;
    border-radius: 6px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.03);
    box-sizing: border-box;
}

.hola-custom-input-field:focus {
    border-color: #1e73be;
    outline: none;
}

/* Password eye cross button alignment asset rules */
.password-visibility-toggle-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #333333;
}

.eye-icon-svg {
    width: 20px;
    height: 20px;
    display: block;
}

/* Action button coloring rules matching target image blue tint */
.hola-primary-auth-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(180deg, #2a7fd0 0%, #1e6bb3 100%);
    color: #ffffff;
    border: 1px solid #16538c;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

.hola-auth-utilities-links {
    text-align: center;
    margin-top: 15px;
    font-size: 13px;
}

.link-blue {
    color: #2980b9;
    text-decoration: none;
}

/* Custom attribution metadata block layout alignments matching screen capture exactly */
.hola-auth-legal-footer {
    margin-top: 50px;
    text-align: center;
    font-size: 11px;
    color: #000000;
}

.hola-auth-legal-footer .corporate-title {
    font-weight: bold;
    color: #0056b3;
}

.policy-link {
    color: #0056b3;
    text-decoration: none;
    font-weight: 600;
}

/* Right Side Layout: Neutral soft-grey background promotional brand identity stack */
.hola-auth-branding-column {
    flex: 1.1;
    background-color: #f6f6f6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
    box-sizing: border-box;
    border-left: 1px solid #eaeaea;
}

.auth-branding-logo-element {
    max-width: 160px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.brand-core-statement {
    font-size: 30px;
    font-weight: 800;
    color: #000000;
    line-height: 1.25;
    text-align: center;
}

.highlight-blue-text {
    color: #0066cc;
}

/* Screen Size Adaptive Breakpoint Rules */
@media (max-width: 768px) {
    .hola-auth-window-container {
        flex-direction: column-reverse;
        max-width: 400px;
    }
    .hola-auth-branding-column {
        padding: 30px;
        border-left: none;
    }
    .brand-core-statement {
        font-size: 26px;
    }
}