* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    width: 100vw;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://images.pexels.com/photos/1028725/pexels-photo-1028725.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.container {
    width: 700px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    border: 2px solid white;
    background-color: white;
}

.heading {
    width: 100%;
    height: 40px;
    text-align: center;
    line-height: 40px;
    text-transform: uppercase;
    color: white;
    background-color: rgb(155, 58, 58);
}

.footer {
    width: 100%;
    height: 40px;
    text-align: center;
    line-height: 40px;
    text-transform: uppercase;
    color: white;
    background-color: rgb(155, 58, 58);
}

.main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-direction: column;
}

.main input {
    width: 45%;
    padding: 10px;
    text-align: center;
    margin: 0 5px;
    border: 2px solid rgb(39, 39, 80);
}

.main button {
    width: 60%;
    padding: 10px;
    text-align: center;
    background-color: green;
    color: white;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: bold;
    border: none;
}