
*{
	padding: 0;
	margin: 0;
	border: 0;
}
*,*:before,*:after{
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
:focus,:active{outline: none;}
a:focus,a:active{outline: none;}

nav,footer,header,aside{display: block;}

html,body{
	height: 100%;
	width: 100%;
	font-size: 100%;
	line-height: 1;
	font-size: 14px;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
input,button,textarea{font-family:inherit;}

input::-ms-clear{display: none;}
button{cursor: pointer;}
button::-moz-focus-inner {padding:0;border:0;}
a, a:visited{text-decoration: none;}
a:hover{text-decoration: none;}
ul li{list-style: none;}
img{vertical-align: top;}

h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight: 400;}


html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    background-color: #F5F7FA;
}


/* LOGIN */

.login__body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 15px;
}

.login__container {
    color: #FFFFFF;
    font-size: 36px;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;  
    font-weight: 700;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    background-color: #1A2B4C;
    padding: 45px 35px;
    border-radius: 12px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 15px 35px rgba(26, 43, 76, 0.25);
    box-sizing: border-box;
    line-height: 1.5;
}

.login__company-name {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    
}

.login__title {
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 10px;
    text-decoration-color: #F27C00;
}
.login__logo {
    height: 80px;
}

.login__form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 10px;
    text-decoration-color: #F27C00;
}

.login__label {
    margin-bottom: 30px;
}

.login__input {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: #555555;
    font-size: 23px;
    padding: 10px;
    background-color: #FFFFFF;
    border: 1px solid #444444;
    border-radius: 9px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
    outline: none;
    width: 100%; 
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.login__login-btn {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 23px;
    color: #FFFFFF;
    background-color: #F27C00;
    border: none;
    border-radius: 9px;
    padding: 15px 30px;
    cursor: pointer;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, text-shadow 0.3s ease;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
}
.login__login-btn:hover {
    background-color: #D96F00;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.login__login-btn:active {
    transform: scale(0.98); 
}

.login__error-message {
    color: #E63946;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    font-size: 18px;
    margin-bottom: 20px;
}

.login__back-link {
    color: #FFFFFF;
    font-size: 16px;
    display: block;
}

.login__back-link:hover {
    text-decoration: underline;
}

@media (max-width: 630px) {
    .login__container {
        font-size: 28px;
        padding: 35px 25px;
    }
    .login__logo {
        height: 60px;
    }
    .login__company-name {
        margin-bottom: 20px;
    }
    .login__form-group {
        margin-bottom: 15px;
    }
    .login__label {
        margin-bottom: 15px;
    }
    .login__login-btn {
        margin-top: 15px;
        margin-bottom: 20px;
    }
    .login__error-message {
        margin-bottom: 15px;
    }
}