/* Admin Customer Invitations - Signup Form Styles */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.page-id-60 {
    background-color: #6a00bf !important;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container5 {
    background: rgb(166, 230, 235);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    max-width: 500px;
    width: 100%;
}

.header5 {
    background: linear-gradient(135deg, #007cba 0%, #005a87 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.header5 h1 {
    font-size: 1.8em;
    margin-bottom: 10px;
    font-weight: 600;
}

.header5 p {
    opacity: 0.9;
    font-size: 0.95em;
}

.form-container5 {
    padding: 40px 30px;
}

.form-group5 {
    margin-bottom: 20px;
}

.form-group5 label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 0.95em;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #fff;
}

.form-control:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

.form-control.is-invalid {
    border-color: #dc3545;
}

.password-input-container {
    position: relative;
    width: 100%;
}

.password-input-container input {
    padding-right: 45px;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
    font-size: 14px;
    padding: 5px;
}

.password-toggle:hover {
    color: #007cba;
}

.password-requirements {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
    border-left: 4px solid #007cba;
}

.password-requirements small {
    font-weight: 600;
    color: #007cba;
    display: block;
    margin-bottom: 8px;
}

.password-requirements ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.password-requirements li {
    font-size: 13px;
    color: #666;
    margin-bottom: 4px;
    padding-left: 15px;
    position: relative;
}

.password-requirements li:before {
    content: "•";
    color: #007cba;
    position: absolute;
    left: 0;
}

.btn5 {
    background: linear-gradient(135deg, #007cba 0%, #005a87 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn5:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 124, 186, 0.3);
}

.btn5:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.loading {
    display: none;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #007cba;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.message {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
}

.message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.message.warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.footer5 {
    text-align: center;
    padding: 20px;
    color: #666;
    font-size: 0.9em;
    border-top: 1px solid #e9ecef;
    background-color: #f8f9fa;
}

@media (max-width: 600px) {
    .container5 {
        margin: 10px;
        border-radius: 15px;
    }

    .header5 {
        padding: 25px 20px;
    }

    .form-container5 {
        padding: 30px 20px;
    }
}

/* Font Awesome icons */
.fas {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.fa-eye:before {
    content: "\f06e";
}

.fa-eye-slash:before {
    content: "\f070";
}
