.signin-page {
    min-height: 100vh;
    background: #ecf0f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 15px;
}

.signin-card {
    display: flex;
    width: 100%;
    max-width: 720px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.signin-panel-brand {
    flex: 0 0 42%;
    background: #1a1a1a;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
}

.signin-icon-badge {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #f5c518;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.signin-icon-badge img {
    width: 26px;
    height: 26px;
}

.signin-brand-name {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 8px;
    color: #fff;
}

.signin-tagline {
    font-size: 13px;
    color: #b8b8b0;
    line-height: 1.6;
    margin: 0;
}

.signin-features {
    margin-top: 30px;
}

.signin-feature {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #d6d6d0;
    margin-bottom: 10px;
}

.signin-feature i {
    color: #f5c518;
    font-size: 13px;
    margin-right: 8px;
}

.signin-panel-form {
    flex: 1;
    padding: 45px 40px;
}

.signin-heading {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 4px;
}

.signin-subheading {
    font-size: 13px;
    color: #7a7a76;
    margin: 0 0 25px;
}

.signin-form-group {
    margin-bottom: 16px;
}

.signin-form-group label {
    display: block;
    font-size: 12px;
    color: #5f5e5a;
    font-weight: 600;
    margin-bottom: 5px;
}

.signin-input-group {
    display: flex;
    align-items: center;
    border: 1px solid #dcdcd6;
    border-radius: 6px;
    padding: 0 12px;
    height: 42px;
}

.signin-input-group:focus-within {
    border-color: #f5c518;
}

.signin-input-group i {
    color: #9a9a94;
    font-size: 15px;
    margin-right: 8px;
}

.signin-input-group input {
    border: none;
    outline: none;
    box-shadow: none;
    background: transparent;
    height: 40px;
    padding: 0;
    flex: 1;
}

.signin-btn {
    display: block;
    width: 100%;
    background: #f5c518;
    color: #1a1a1a;
    border: none;
    border-radius: 6px;
    padding: 11px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
}

.signin-btn:hover,
.signin-btn:focus {
    background: #e0b400;
    color: #1a1a1a;
}

.signin-footer-note {
    font-size: 11px;
    color: #b0b0aa;
    text-align: center;
    margin: 20px 0 0;
}

@media (max-width: 767px) {
    .signin-card {
        flex-direction: column;
    }

    .signin-panel-brand {
        flex: none;
    }

    .signin-features {
        display: none;
    }
}
