@font-face {
    font-family: Roboto-bold;
    src: url(../assets/font/Roboto-Bold.ttf);
}

@font-face {
    font-family: Roboto-regular;
    src: url(../assets/font/Roboto-Regular.ttf);
}

body {
    font-family: Roboto-regular;
    margin: 0;
}

.login-page {
    background-image: url("../assets/images/background.png");
    background-position: center;
    display: flex;
    justify-content: center;
    height: calc(100vh - 60px);
    padding-top: 60px;
}

.login-content {
    width: 512px;
    height: auto;
    text-align: center;
}

.title {
    font-size: 17px;
    line-height: 24px;
    text-transform: uppercase;
    font-family: Roboto-bold;
    color: #fff;
    text-align: center;
    margin-top: 12px;
    margin-bottom: 24px;
}

.login-form {
    background: #fff;
    border-radius: 20px;
    padding: 42px 60px;
}

@media screen and (max-width: 600px) {
    .login-form {
        padding: 42px 30px;
    }
}

h2 {
    font-size: 24px;
    line-height: 28px;
    margin: 0 0 32px 0;
}

.input-box {
    height: 37px;
    position: relative;
    margin-bottom: 16px;
}

input {
    height: 100%;
    width: calc(100% - 46px);
    padding-left: 42px;
    outline: none;
    border: 1px solid #E1E8ED;
    border-radius: 3px;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 12px;
}

.login-buton {
    width: 100%;
    height: 41px;
    background: #208DF4;
    border: 1px solid #208DF4;
    border-radius: 3px;
    font-size: 14px;
    line-height: 15px;
    color: #fff;
    margin-top: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-buton:hover {
    opacity: 0.8;
}

.login-error-message {
    color: red;
    text-align: center;
    font-style: italic;
}