/* Importing fonts from Google */
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap'); */

/* Reseting */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #ecf0f3;
    background-image: url(../image/bg.jpg);
    background-size: cover;
}

.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;    
    max-width: 350px;
    min-height: 500px;
    margin: 80px auto;
    padding: 10px;
    background-color: #565757;
    opacity: 0.9;
    border-radius: 15px;
    
}



.wrapper img {
    width: 125px;
    
}

.wrapper input{
    display: block;
    width: 100%;
    padding: 10px 20px;
    outline: none;
    border-radius: 25px;
    margin-bottom: 16px;
}


.wrapper .btn {
    box-shadow: none;
    width: 100%;
    height: 40px;
    background-color: #d4760a;
    color: #fff;
    border-radius: 25px;
    
}

.wrapper .btn:hover {
    background-color: #bd7f0e;
}

.wrapper a {
    text-decoration: none;
    font-size: 0.8rem;
    color: #f48c03;
}

.wrapper a:hover {
    color: #e5bc03;
}
