@font-face {
    font-family: MuseoSans;
    src: url(fonts/museo-sans/MuseoSans-100.otf) format('truetype');
    font-weight: 100;
}
@font-face {
    font-family: MuseoSans;
    src: url(fonts/museo-sans/MuseoSans-300.otf) format('truetype');
    font-weight: normal;
}
@font-face {
    font-family: MuseoSans;
    src: url(fonts/museo-sans/MuseoSans-500.otf) format('truetype');
    font-weight: bold;
}
@font-face {
    font-family: MuseoSans;
    src: url(fonts/museo-sans/MuseoSans-700.otf) format('truetype');
    font-weight: bolder;
}

* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: MuseoSans, sans-serif, serif;
    font-weight: normal;
}

html,
body {
    height: 100%;
    width: 100%;
    background-color: #6d1d20;
}

body {
    display: flex;
}

.panel {
    background-color: #a59c97;
    width: 300px;
    height: auto;
    margin: auto;
    border-radius: 30px;

    padding: 20px;
}

.logo {
    width: 260px;
}

.login-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.txt-fld {
    margin-top: 25px;
    width: 260px;
    height: 50px;
    font-size: 20px;
    border: none;
    border-radius: 15px;

    font-weight: 100;

    text-indent: 20px;
    font-weight: bold;
}

.btn-login {
    margin-top: 25px;
    width: 260px;
    height: 50px;
    font-size: 30px;
    color: white;
    background-color: #6d1d20;
    font-weight: normal;
    border: none;
    border-radius: 15px;
    cursor: pointer;
}

.rcv-pass {
    margin-top: 20px;
    font-size: 15px;
    color: white;
    font-weight: normal;
    float: right;
}

.rcv-pass:hover {
    font-weight: bolder;
    margin-top: 18px;
    color: white;
    font-size: 17px;
    float: right;
}


.error-msg{
    width: 260px;
    border: 1px solid red;
    border-radius: 15px;
    padding: 15px;
    margin-top: 15px;
    background-color: rgba(255,0,0,0.2);
    text-align: center;
}