body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background: #2122D9;
}

.container {
    height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.login-form {
    background-color: #FFFFFF;
    height: 320px;
    width: 350px;
    text-align: center;
    box-sizing: border-box;
    box-shadow: 2px 2px 10px 1px #2f2727;
    border-radius: 20px;
}


.heading {
    padding: 0 0 20px 0;
    border-bottom: 1px solid silver;
}

.inputfield {
    border: 2px solid #000DFD;
    padding: 10px 20px;
    border-radius: 20px;
    margin: 10px;
    width: 200px;
    text-align: center;
    font-size: 15px;
    color: #000000;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    transition: 0.50s;
}

.inputfield:focus {
    width: 250px;
    border: 2px solid #ff001d;
}

.inputbtn {
    margin: 20px;
    background: #0000ff;
    border: none;
    color: #ffffff;
    padding: 10px;
    border-radius: 20px;
    width: 230px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: bold;
    transition: 0.50s;
}

.inputbtn:hover {
    cursor: pointer;
    width: 280px;
    background-color: #ff0000;
}

a {
    text-decoration: none;
}

.alert {
    font-weight: bold;
    font-size: 15px;
}