/* Dark Modern Form styles */
		:root {
                --primary-color: #00D07A;
                --primary-hover: #00A862;
                --dark-bg: #121212;
                --dark-surface: #1E1E1E;
                --dark-surface-lighter: #2A2A2A;
                --text-primary: #FFFFFF;
                --text-secondary: #B0B0B0;
                --border-color: #333333;
                --error-color: #FF5252;
                --success-color: #00D07A;
                --input-focus-shadow: rgba(0, 208, 122, 0.25);
            }
    .dark-register-form-container {
        max-width: 740px;
        margin: 0 auto;
        padding: 2.5rem;
		background: #000;
/*         background: #1e1e1e; */
        border-radius: 12px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
        font-family: 'Open Sans', Tahoma, Geneva, Verdana, sans-serif;
        color: #e0e0e0;
    }
		 .form-title {
                font-family: 'Poppins', sans-serif;
                color: #e0e0e0;
                font-size: 24px;
                font-weight: 600;
                margin: 0 0 5px;
                text-align: center;
            }
            
            .form-subtitle {
                font-family: 'Open Sans', sans-serif;
                color: #e0e0e0;
                font-size: 14px;
                margin: 10px 0 50px 0;
                text-align: center;
            }

    .dark-register-form .form-group {
        margin-bottom: 0.1rem;
        position: relative;
    }

    .dark-register-form label {
        display: block;
        margin-bottom: 0.7rem;
        font-weight: 500;
        color: #e0e0e0;
        font-size: 0.95rem;
    }

    .dark-register-form input[type="text"],
    .dark-register-form input[type="email"],
    .dark-register-form input[type="tel"],
    .dark-register-form input[type="password"],
    .dark-register-form select {
        width: 100%;
        padding: 14px 18px;
        border: 1px solid #1A795296;
        border-radius: 8px;
        font-size: 16px;
        transition: all 0.3s;
        background-color: #111;
/* 		background-color: #2a2a2a; */
        color: #fff!important;
        box-sizing: border-box;
    }

    .dark-register-form input:focus,
    .dark-register-form select:focus {
        outline: none;
        border-color: #1A7952;
        box-shadow: 0 0 0 2px rgba(26, 121, 82, 0.25);
/*         background-color: #333; */
    }

    .dark-register-form .password-input-container {
        position: relative;
        display: flex;
        align-items: center;
    }

    .dark-register-form .toggle-password {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        color: #888;
        cursor: pointer;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        z-index: 2;
    }

    .dark-register-form .password-strength {
        margin-bottom: 10px;
        font-size: 12px;
    }

    .dark-register-form .strength-bar {
        height: 4px;
        background-color: #444;
        border-radius: 2px;
        margin-bottom: 5px;
        position: relative;
        overflow: hidden;
    }

    .dark-register-form .strength-bar::before {
        content: '';
        position: absolute;
        height: 100%;
        width: 0;
        background-color: #e74c3c;
        transition: width 0.3s, background-color 0.3s;
    }

    .dark-register-form .strength-bar.weak::before {
        width: 25%;
        background-color: #e74c3c;
    }

    .dark-register-form .strength-bar.medium::before {
        width: 50%;
        background-color: #f39c12;
    }

    .dark-register-form .strength-bar.strong::before {
        width: 75%;
        background-color: #3498db;
    }

    .dark-register-form .strength-bar.very-strong::before {
        width: 100%;
        background-color: #1A7952;
    }

    .dark-register-form .strength-text {
        color: #888;
    }

    .dark-register-form .terms-group {
        display: flex;
        align-items: center;
    }

    .dark-register-form .terms-group input[type="checkbox"] {
        margin-right: 10px;
        width: 14px;
        height: 14px;
        accent-color: #1A7952;
    }

    .dark-register-form .terms-group label {
        margin-bottom: 0;
        font-size: 14px;
    }

    .dark-register-form .terms-link {
        color: #1A7952;
        text-decoration: none;
    }

    .dark-register-form .terms-link:hover {
        text-decoration: underline;
    }

    .dark-register-form .submit-group {
        margin-top: 2.5rem;
    }

    .dark-register-form button[type="submit"] {
        background-color: #1A7952;
        color: white;
        border: none;
        border-radius: 8px;
        padding: 20px 0px!important;
        font-size: 20px;
        font-weight: bold;
        cursor: pointer;
        width: 100%;
        transition: all 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .dark-register-form button[type="submit"]:hover {
        background-color: #156344;
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

    .dark-register-form button[type="submit"]:active {
        transform: translateY(0);
        box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
    }

    .dark-register-form .required {
        color: #e74c3c;
    }

    .dark-register-form .error-message {
        color: #e74c3c;
        font-size: 14px;
        margin-top: 5px;
        min-height: 20px;
    }
		.login-link {
                text-align: center;
                margin-top: 20px;
                font-family: 'Open Sans', sans-serif;
                font-size: 14px;
                color: var(--text-secondary);
            }
            
            .login-link a {
                color: var(--primary-color);
                text-decoration: none;
                font-weight: 600;
            }
            
            .login-link a:hover {
                text-decoration: underline;
            }

    /* Toast notification styles */
    .toast-notification {
        position: fixed;
        top: 30px;
        right: 30px;
        background: #1A7952;
        color: white;
        padding: 15px 25px;
        border-radius: 8px;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
        display: none;
        z-index: 1000;
        font-size: 16px;
        max-width: 350px;
    }

    .toast-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .toast-message {
        flex: 1;
        padding-right: 15px;
    }

    .toast-close {
        background: none;
        border: none;
        color: white;
        font-size: 20px;
        cursor: pointer;
        padding: 0;
        margin: 0;
        line-height: 1;
    }

    @media screen and (max-width: 768px) {
        .dark-register-form-container {
            padding: 1.8rem;
            margin: 0 15px;
        }
        
        .toast-notification {
            top: 20px;
            right: 20px;
            left: 20px;
            max-width: none;
        }
    }

    @media screen and (max-width: 480px) {
        .dark-register-form label {
            font-size: 14px;
        }
        
        .dark-register-form input[type="text"],
        .dark-register-form input[type="email"],
        .dark-register-form input[type="tel"],
        .dark-register-form input[type="password"],
        .dark-register-form select,
        .dark-register-form button[type="submit"] {
            padding: 12px 15px;
            font-size: 14px;
        }
    }