* {
    padding: 0;
    margin: 0;
    outline: none;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    /* background-color: rgb(34, 34, 34); */
    background-image: url(./img/un.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
    color: white;
}

.container {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,.7);
}

.block {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 250px;
    background-color: rgba(0, 0, 0, .6);
    padding: 36px 12px 17px 12px;
    border-radius: 18px;
    box-shadow: 0 1px 4px rgba(255,255,255, .25);
}

.block>svg {
    width: 59px;
    height: 48.4px;
    margin-bottom: 15px;
}

.block>p.title {
    font-size: 17px;
    font-weight: bold;
    margin-top: 16px;
    margin-bottom: 18px;
}

.block>.form {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
}

.form>div>input {
    padding: 5px 9px;
    border-radius: 5px; 
    background-color: rgb(214, 214, 214); 
    border: none;
    color: #213c47;
    width: 100%;
    margin-top: 6px;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 15px;
    font-size: 16px;
}
.form>div>div {
    color: #dc0a1b;
    font-size: 13.2px;
    margin-top: -8px;
    margin-bottom: 11px;
}

.form>.field-loginform-rememberme {
    margin: 8px 0;
}

.form>div>div>label {
    color: #3C7084;
    font-size: 16px;
}

.form>div>div>button[type='submit']{
    width: 425%;
    background-color: #3C7084;
    padding: 7px 5px;
    margin-top: 10px;
    font-size: 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    color: rgb(255, 255, 255);
}

.form>div>div>button[type='submit']:hover {
    background-color: #213c47;
}

.form>div>button[type='submit']{
    width: 100%;
    background-color: #3C7084;
    padding: 7px 5px;
    font-size: 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    color: rgb(255, 255, 255);
}

.form>div>button[type='submit']:hover {
    background-color: #213c47;
}

.block>p.ft {
    font-size: 15px;
    margin-top: 9px;
}
.block>p.ft>a {
    text-decoration: none;
    color: #3C7084;
}