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

form, .cardDiv{
    margin: 50px auto;
    width: 100%;
    padding: 60px;
    max-width: 500px;
    height: 350px;
    background-image: url(..//media/box.jpeg);
    background-size: 450px 380px;
    border-radius: 10px;
    box-shadow: 5px 5px 20px black;  
}

input{
    width: 100%;
    height: 35px;
    margin-bottom: 30px;
    background-color: bisque;
    outline: none;
    border: none;
    border-radius: 10px;
    padding-left: 10px;
    box-shadow: 5px 5px 10px black;
}

::placeholder{
   
    color: rgb(85, 96, 4);
    text-transform: uppercase;
}

.btn{
    width: 200px;
    height: 35px;
    margin: 50px auto;
}

button{
    width: 100%;
    height: 35px;
    margin-bottom: 10px;
    border-radius: 50px;
    background-color: #ffdd59;
    border: none;
    box-shadow: 5px 5px 20px black;
    cursor: pointer;
}

.cardDiv{
    background-image: url(https://img.freepik.com/free-vector/abstract-grunge-frame-texture-with-text-space_1017-27378.jpg?w=2000);
    background-size: 500px 140px;
    height: 100px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: 20px;
    font-weight: 700;
    color: #1e272e;
}