.custom-auth-error {
    color: red;
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #f00;
    background: #ffebeb;
    border-radius: 4px;
}

.custom-auth-success {
    color: green;
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #0f0;
    background: #ebffeb;
    border-radius: 4px;
}

.field-error {
    color: red;
    font-size: 12px;
    margin-top: 5px;
}

.custom-auth-box {
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f9f9f9;
    margin: 20px 0;
}

.auth-header {
    margin-bottom: 20px;
}

.auth-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.auth-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.btn-submit, .btn-logout {
    padding: 10px 15px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
}

.btn-submit {
    background: #0073aa;
    color: white;
}

.btn-logout {
    background: #dc3232;
    color: white;
}

@media only screen 
  and (width: 1024px) 
  and (height: 1366px) {

}