.container-entornos {
	width: 100%;
	display: flex;
	align-items: center;
}

.container-campus-card{
    /* border: 1px solid green; */
    background-color: hsl(var(--clr-white)/0.5);
    border-radius: 26px;
    width: 300px;
    height: 300px;
    display: flex;
	align-items: center;
	margin-top: 36px;
	/* padding-top: 156px; */
}

.login {
	/* border: 1px solid green; */
	width: 320px;
	padding: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.login__field {
	/* border: 1px solid green; */
	padding: 20px 0px;	
	position: relative;	
	display: flex;
	justify-content: center
}

.login__field input::placeholder,
.login__field input {
    color: white !important;
}

.login__icon > img {
	position: absolute;
	top: 25px;
	transform: translateX(-6px);
	/* opacity: 1; */
}

.login__input {
	border: none;
	/* border:21px solid yellow; */
	border-bottom: 1px solid #ffffff;
	background: none;
	padding: 10px;
	padding-left: 24px;
	font-weight: 100;
	font-family: "Barlow", sans-serif;
	/* font-family: "Barlow Condensed", sans-serif; */
	width: 75%;
	transition: .2s;
}

.login__input:active,
.login__input:focus,
.login__input:hover {
	outline: none;
	border-bottom-color: #ada02c;
}

.login__submit {
	background: rgb(143, 143, 143);
	font-size: 18px;
	margin-top: 30px;
	padding: 16px 30px 16px 16px;
	border-radius: 26px;
	/* border: 1px solid #D4D3E8; */
	text-transform: uppercase;
	font-weight: 200;
	display: flex;
	align-items: center;
	width: 100%;
	/* color: #464545; */
	color: white;
	border: 0;
	box-shadow: 0px 4px 4px #000000;
	cursor: pointer;
	transition: .2s;
	font-family: "Barlow Condensed", sans-serif;
}

.login__submit:active,
.login__submit:focus,
.login__submit:hover {
	/* border-color: black; */
	outline: none;
}

.button__icon {
	margin-left: auto;
}