/* Secure Distributor Authorization Forms Sheet Layout Rules */
.coslife-form { 
    max-width: 400px; 
    margin: 40px auto; 
    padding: 30px; 
    border-radius: 12px; 
    background: #0073aa; 
    color: #fff; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); 
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; 
}
.coslife-form h2 { 
    text-align: center; 
    margin-bottom: 25px; 
    font-weight: 600; 
    color: #fff; 
    font-size: 24px; 
}
.coslife-form .form-group { 
    margin-bottom: 18px; 
}
.coslife-form .form-group label { 
    display: block; 
    margin-bottom: 6px; 
    font-weight: 500; 
    font-size: 14px; 
}
.coslife-form .form-group input { 
    width: 100%; 
    padding: 12px; 
    border: 1px solid rgba(255,255,255,0.2); 
    border-radius: 6px; 
    background: #fff; 
    color: #333; 
    box-sizing: border-box; 
    font-size: 15px; 
}
.coslife-form .btn { 
    padding: 12px; 
    background: #ff9800; 
    color: #fff; 
    border: none; 
    border-radius: 6px; 
    cursor: pointer; 
    font-weight: 600; 
    width: 100%; 
    font-size: 16px; 
    margin-top: 10px; 
    transition: background 0.2s; 
}
.coslife-form .btn:hover { 
    background: #e68900; 
}
.coslife-form .form-note { 
    text-align: center; 
    margin-top: 20px; 
    font-size: 14px; 
}
.coslife-form .form-note a { 
    color: #ff9800; 
    text-decoration: none; 
    font-weight: bold; 
}
.coslife-form .form-note a:hover { 
    text-decoration: underline; 
}
.coslife-logo { 
    display: block; 
    margin: 0 auto 10px; 
    max-width: 140px; 
    height: auto; 
}
.error-message { 
    background-color: #e63946; 
    color: white; 
    padding: 12px; 
    text-align: center; 
    margin-bottom: 20px; 
    border-radius: 6px; 
    font-size: 14px; 
}
.success-message { 
    background-color: #2a9d8f; 
    color: white; 
    padding: 12px; 
    text-align: center; 
    border-radius: 6px; 
    font-size: 14px; 
    margin-bottom: 20px; 
}