body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #DBEEFF 0%, #DED2FF 100%);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1 {
    font-size: 40px;
    font-weight: 900;
    padding-bottom: 50px;
    margin-left: 0px;
    padding-left: 16px;
    text-align: left;
    width: 100%;
}

h2 {
    font-size: 24px;
    font-weight: 900;
}

p {
    margin-block-start: 0px;
    margin-block-end: 0px;
    margin-bottom: 0px;
}

/* Full screen */

#main {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Screen section with page */

#screen {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: inline;
    align-items: center;
}

#logo {
    width: 142px;
    height: 26px;
    position: fixed;
    z-index: 99;
    margin-left: 32px;
    margin-top: 40px;
}

#authentication-field {
    width: 50%;
    height: 100%;
    min-width: 430px;
    flex-direction: column;
    display: flex;
    align-items: end;
    justify-content: center;
}

@media screen and (max-width: 1280px){
    #authentication-field {
        width: 100%;
        align-items: center;
    }
}


#conversion-field {
    width: 50%;
    height: 100%;
    min-width: 430px;
    flex-direction: column;
    display: flex;
    align-items: left;
    justify-content: center;
}

@media screen and (max-width: 1280px){
    #conversion-field {
        display: none;
    }
}

.conversion-block {
    height: 170px;
    margin-left: 50px;
    margin-bottom: 40px;
}

#authentication {
    width: 400px;
    height: 60px;
    background-color: #FFF;
    font-size: 16px;
    font-weight: 300;
    display: flex;
    align-items: center;
}

#authentication button{
    padding: 16px;
    margin-left: 40px;
    font-size: 16px;
    background-color: transparent;
    border: 1px solid #000000;
    border-radius: 8px;
    font-weight: 700;
}

#successful_reset {
    display: none;
    padding: 16px;
}

#successful_reset i {
    padding-right: 10px;
}

/* Content part */
.content {
    max-width: 640px;
    min-width: 430px;
    height: 610px;
    display: flex;
    flex-direction: column;
    margin: 15px 15px;
    padding: 25px;
}

.emoji {
    font-size: 46px;
}

#authentication-content {
    width: 100%;
    max-width: 640px;
    display: flex;
    flex-direction: column;
    float: right;
    text-align: left;
}

#authentication-content form {
    margin-left: 15px;
    width: 95%;
    height: 100%;
}

#authentication-content a {
    margin-left: 15px;
    width: 95%;
    height: 100%;
}

#authentication-content form input {
    width: 100%;
    padding: 16px 50px;
    border: 1px solid black;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    font-size: 16px;
}

.authentication-content-btn {
    width: 100%;
    padding: 16px 50px;
    border: 1px solid black;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    font-size: 16px;
    color: #000000;
    font-weight: 900;
    text-align: left;
    background-color: transparent;
}

.content-text {
    width: 100%;
    font-size: 16px;
    color: #000000;
    padding: 16px;
    float: left;
}

.authentication-btn {
    width: 100%;
    margin-top: 50px;
    padding: 16px;
    border: 1px solid #0500FF;
    background-color: #0500FF;
    font-weight: 700;
    color: #FFF;
    border-radius: 8px;
    overflow: hidden;
    font-size: 16px;
}

.authentication-text-redirect {
    font-size: 16px;
    color: #000000;
    padding: 16px;
    margin-top: 15px;
    text-align: left;
    width: 100%;
}

.authentication-text-redirect a{
    font-size: 16px;
    color: #0500FF;
    font-weight: 900;
    text-decoration: none;
}

.authentication-text {
    font-size: 16px;
    color: #7A7A7A;
    padding: 16px;
    margin-top: 30px;
    text-align: left;
    width: 100%;
}

.authentication-text p{
    margin-bottom: 0px;

}

.authentication-text a{
    font-size: 16px;
    color: #7A7A7A;
}

.input-with-icon {
    position: relative;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    }

.input-with-icon i {
    height: 17px;
    font-size: 24px;
    margin-left: 16px;
    position: absolute;
    transform: translateY(-50%);
    color: #ccc; /* Color of the icon */
}

.input-company {
    position: absolute;
    left: -9999px;
}

.input-company input{
    position: absolute;
    left: -9999px;
}

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

.m i {
    margin-left: 30px;
}

.m a {
    width: 100%;
    margin-left: 15px;
}
