* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	transition: all ease-in-out .2s;
}

:root {
	font-family: 'Montserrat', sans-serif;
}

body {
    background: #000!important;
}

input::placeholder {
    color: white !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__placeholder,
.select2-container--default .select2-selection--single .select2-selection__placeholder{
    color: white !important;
}

.select2-container--default .select2-results__option{
    color: white !important;
}

#main_container {
    width: 100%;
    background-image: url('../img/utils/bg_interno.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    display: flex;
}

label {
    color: white;
}

#logo {
    margin-top: 23px;
    margin-left: 23px;
}

#icono {
	display: none;
}

#half_one-c {
    /* background-color: lightblue; */
    
    /* width: 100%; */
    /* max-width: 60%; */
    /* height: 100%; */
    height: auto;
}

#half_two-c {
    width: 100%;
    max-width: 40%;
    box-sizing: border-box;
    padding: 6%;
    height: auto;
}

#half_two-c h1 {
    color: white;
    font-size: 3.5em;
    margin-bottom: 32px;
}

#half_two-c input {
    width: 100%;
    color: white;
    padding: 10px 0 10px 5px;
    background-color: black;
    margin-bottom: 23px;
    border: 0;
    border-bottom: 1px solid white;
}

#half_two-c input:focus {
    outline: none;
}

#half_two-c input[type="submit"] {
    background-color: white;
    font-weight: 700;
    cursor: pointer;
    color: black;
    max-width: 50%;
}

.select2-container--default .select2-selection--single{
    background-color: transparent !important;
    border: none !important;
    border-bottom: 1px solid white !important;
    border-radius: 0 !important;
}

.select2-dropdown{
    background-color: #000 !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field{
    background-color: #000 !important;
    color: #fff !important;    
}

.select2-container--default .select2-results__option.select2-results__option--highlighted{
    color: #fff !important;
    background: #4d91d2 !important;
    
}

.select2-container--default.select2-container--focus .select2-selection--multiple,
.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--multiple,
.select2-container--default.select2-container--open .select2-selection--single{
        /* border-color: #fff!important; */
        background-color: #000!important;
        border: 0 !important;
        border-bottom: 1px solid white !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #fff!important;
}


@media (max-width: 500px) {
    #main_container {
        background: #000 !important;
    }
	#half_one-c {
    display: none;
	}

	#icono {
    display: inherit;
    width: 64px;
    height: auto;
    margin-bottom: 32px;
	}

	#half_two-c {
    max-width: 100%;
    padding: 8%;
	}

	#half_two-c h1 {
    color: white;
    font-size: 2em;
    margin-bottom: 32px;
	}

	#half_two-c input[type="submit"] {
    margin: 0 auto;
    display: block;
	}
}