@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;400;900;&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}


a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

body {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; 
}
    
.form-wrapper{
    justify-content: center;
    align-items: center;
    background:#571666;
    padding:50px 50px;
    border-radius:10px;
}

.form-field{
    padding:0px 0px 10px 0px;
}

.form-field label{
    display:block;
    color:white;
    padding:4px 0px;
}

.form-field input[type=text]{
    background:#fff;
    color:#959595;
    border:none;
    border-radius:4px;
    padding:8px;
    outline:none;
    width:100%;
}

.form-field input[type=password]{
    background:#fff;
    color:#959595;
    border:none;
    border-radius:4px;
    padding:8px;
    outline:none;
    width:100%;
}

.form-field input[type=submit]{
    background:orange;
    color:white;
    border:none;
    cursor:pointer;
    border-radius:4px;
    margin:16px 0px 0px 0px;
    padding:8px;
    width:100%;
}

.form-wrapper .error-message{
    color:orangered;
    font-size:0.8rem;
}

.apps-wrapper{
    
}

.apps-wrapper .app{
    
}

.apps-wrapper .app img{
    width:100px;
    height:100px;
    border-radius:10px;
    object-fit:cover;
    border:1px solid #757575;
}