/* For mobile phones: */
[class*="col-"] {
    width: 100%;
}
@media only screen and (min-width: 600px) {
/* For tablets: */
    .col-m-1 {width: 8.33%;}
    .col-m-2 {width: 16.66%;}
    .col-m-3 {width: 25%;}
    .col-m-4 {width: 33.33%;}
    .col-m-5 {width: 41.66%;}
    .col-m-6 {width: 50%;}
    .col-m-7 {width: 58.33%;}
    .col-m-8 {width: 66.66%;}
    .col-m-9 {width: 75%;}
    .col-m-10 {width: 83.33%;}
    .col-m-11 {width: 91.66%;}
    .col-m-12 {width: 100%;}
}
@media only screen and (min-width: 768px) {
/* For desktop: */
    .col-1 {width: 8.33%;}
    .col-2 {width: 16.66%;}
    .col-3 {width: 25%;}
    .col-4 {width: 33.33%;}
    .col-5 {width: 41.66%;}
    .col-6 {width: 50%;}
    .col-7 {width: 58.33%;}
    .col-8 {width: 66.66%;}
    .col-9 {width: 75%;}
    .col-10 {width: 83.33%;}
    .col-11 {width: 91.66%;}
    .col-12 {width: 100%;}
}

@font-face {
	font-family: "Roboto"
	src: url(fonts/Roboto-VariableFont_wdth,wght.ttf);
}

html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

input:-webkit-autofill {
  box-shadow: 0 0 0 1000px #231651 inset !important;
  -webkit-text-fill-color: #fff !important;
  transition: background-color 5000s ease-in-out 0s;
}

body {
	font-size: 100%;
	font-family: Roboto, sans-serif;
	-webkit-text-size-adjust: none;
	-moz-text-size-adjust: none;
	-ms-text-size-adjust: none;
	text-size-adjust: none;
}

.text{
	color: white;
	font-size: 2.5rem;
	font-weight: 700;
}

.login-box{
	display: flex;
	gap: 1.25rem;
	flex-direction: column;
	padding: 1rem;
	background-color: #231651;
	height: 31.25rem;
	width: 31.25rem;
	position: absolute;
	margin: auto;
	left: 0; 
    right: 0; 
    top: 0; 
    bottom: 0;
	border-radius: 1rem;
	box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.logo{
	width: 12.5rem;
	margin-left: 1rem;
}

.text-div{
	display: flex;
	margin-left: 1rem;
	gap: 0.313rem;
	align-items: center;
}

.svg-login{
	width: 50px;
	filter: brightness(0) invert(1);
}

.input-div{
	display: flex;
	flex-direction: column;
	justify-content: start;
	margin: 1rem;
	position: relative;
}

.label{
	color: white;
	font-weight: 700;
	position: absolute;
	top: -0.813rem;
	left: 1.125rem;
	padding: 0.188rem;
	background-color: #231651; 
}

.input{
	background-color: transparent !important;
	color: white;
	border-style: solid;
	border-color: #D3AF37;
	font-size: 1.25rem;
	padding: 0.938rem;
	border-width: 0.188rem;
	border-radius: 0.313rem;
	box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

.input:focus{
    outline: none;
}

.input::-ms-reveal {
  display:none;
}

.lbl-btn{
	color: white;
	font-weight: 700;
	position: absolute;
	top: -1.7rem;
	left: 15.7rem;
	padding: 0.188rem;
	text-decoration:none;
}

.lbl-btn:hover{
	color: #D3AF37;
}

.button{
	border-radius: 0.313rem;
	border-style: solid;
	background-color: #D3AF37;
	font-size: 1.25rem;
	font-weight: 700;
	padding: 0.938rem;
	border-width: 0;
	color: white;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}

.button:hover{
	cursor: pointer;
}

