.text_color {
    color: #8d8d8d !important;
	text-decoration: none !important;
}
.text_color:hover {
    color: #000 !important;
    cursor: pointer !important;
	text-decoration: none !important;
}
.show{
	display: block;
}
.hide{
	display: none;
}
.no-select {
  user-select: none;
  -webkit-user-select: none; 
  -moz-user-select: none;   
  -ms-user-select: none;     
}
.text-danger{
	color: #dc3545 !important;
}
.error {
  color: #d9534f;
  font-size: 13px;
  margin-top: 5px;
}
.invalid {
  border-color: #d9534f;
}
/*login*/
.login-btn {
  width: 100px;
  height: 40px;
  padding-left: 15px;
  padding-right: 15px;
  border: none;
  background: #FFFFFF;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
	
  transition: background-color 0.3s, box-shadow 0.3s;
  color: #757575;
  font-size: 14px;
  font-weight: 500;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  background-color: white;
  background-repeat: no-repeat;
  background-position: 12px 11px;
}
.login-btn:hover {
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.16);
}
.login-btn:active {
  background-color: #eeeeee;
}
.login-btn:focus {
  outline: none;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.16);
}
.login-btn:disabled {
  filter: grayscale(100%);
  background-color: #ebebeb;
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04), 0 1px 1px rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
/*login*/

/*Modal Win*/
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .my-modal {
            background-color: white;
            border-radius: 12px;
            width: 100%;
            max-width: 450px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            position: relative;
            transform: translateY(-20px);
            transition: transform 0.3s;
            overflow: hidden;
        }

        .modal-overlay.active .modal {
            transform: translateY(0);
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 25px;
            border-bottom: 1px solid #eaeaea;
            position: relative;
        }

        .modal-title {
            font-size: 22px;
            font-weight: 600;
            color: #333;
        }

        .close-btn {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #777;
            transition: color 0.3s;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .close-btn:hover {
            color: #333;
            background-color: #f0f0f0;
        }

        .tabs {
            display: flex;
            border-bottom: 1px solid #eaeaea;
        }

        .tab {
            flex: 1;
            padding: 15px;
            text-align: center;
            background: none;
            border: none;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            color: #777;
            position: relative;
        }

        .tab.active {
			color: #28a745; 
        }

        .tab.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            /*background-color: #4a76a8;*/
			background-color: #28a745; 
        }

        .modal-body {
            padding: 25px;
        }

		.form-container {
			position: relative;
			overflow: hidden;
			transition: height 0.4s ease;
		}

		.form {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			transition: transform 0.5s ease, opacity 0.4s ease;
			opacity: 0;
			transform: translateX(100%);
		}

		/* Активная форма (на экране) */
		.form.active {
			opacity: 1;
			transform: translateX(0);
			z-index: 2;
		}

		/* Уходящая форма (влево) */
		.form.left {
			z-index: 1;
		}

		/* Чтобы не мигало при старте */
		.form.hidden {
			display: none;
		}

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #333;
        }

        .form-input {
            width: 100% !important;
            padding: 12px 15px !important;
            border: 1px solid #ddd !important;
            border-radius: 6px !important;
            font-size: 16px !important;
            transition: border-color 0.3s, box-shadow 0.3s !important;
        }

        .form-input:focus {
            border-color: #4a76a8 !important;
            box-shadow: 0 0 0 3px rgba(74, 118, 168, 0.2) !important;
            outline: none !important;
        }

        .password-strength {
            font-size: 14px;
            margin-top: 5px;
            color: #28a745;
            font-weight: 500;
        }

        .checkbox-group {
            display: flex !important;
			flex-direction: column;
            align-items: flex-start !important;
            margin-bottom: 10px !important;
        }

        .checkbox-group input {
            margin-right: 10px !important;
            margin-top: 3px !important;
            -webkit-appearance: auto !important;
        }

        .checkbox-group label {
            font-size: 14px !important;
            color: #555 !important;
            line-height: 1.4 !important;
        }

        .checkbox-group a {
            /*color: #4a76a8;*/
			color: #28a745; 
            text-decoration: none !important;
        }

        .checkbox-group a:hover {
            text-decoration: underline !important;
			color: #218838; 
        }
		
		/*--------------------------------------------------------*/
		
		.checkbox-group-2 {
            display: flex !important;
			flex-direction: row;
            align-items: flex-start !important;
            margin-bottom: 10px !important;
        }

        .checkbox-group-2 input {
            margin-right: 10px !important;
            margin-top: 3px !important;
            -webkit-appearance: auto !important;
        }

        .checkbox-group-2 label {
            font-size: 14px !important;
            color: #555 !important;
            line-height: 1.4 !important;
        }

        .checkbox-group-2 a {
            /*color: #4a76a8;*/
			color: #28a745; 
            text-decoration: none !important;
        }

        .checkbox-group-2 a:hover {
            text-decoration: underline !important;
			color: #218838; 
        }

        .form-btn {
            width: 100%;
            /*background-color: #4a76a8;*/
			background-color: #28a745; 
            color: white;
            border: none;
            padding: 14px;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s, transform 0.2s;
        }

        .form-btn:hover {
            /*background-color: #3a6590;*/
			background-color: #218838; 
            transform: translateY(-2px);
        }

        .form-btn:active {
            transform: translateY(0);
			background-color: #1e7e34; 
        }

        .forgot-password {
            text-align: center;
            margin-top: 15px;
        }

        .forgot-password a {
            /*color: #4a76a8;*/
			color: #28a745; 
            text-decoration: none;
            font-size: 14px;
        }

        .forgot-password a:hover {
            text-decoration: underline;
			color: #218838; 
        }
/*Modal Win*/