@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.main{
    width: 100%;
    height: 100vh;
    background: url("../image/image.jpg") center center;
    background-size: cover;
}

.overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    flex-direction: column;
}

.title {
    margin-top: 30px;
    color: white;
    text-align: center;
    font-size: 3.5rem;
    font-weight: 1000;
}

.col {
    margin-top: 30px;
    width: 1000px;
    display: flex;
    justify-content: center;
    color: white;
}

.col div {
    width: 250px;
    text-align: center;
}

input{
    height: 120%;
    width: 80%;
    background-color: rgba(252, 110, 28, 0.7);
    border-color: transparent;
    border-radius: 5px;
    text-align: center;
    font-size: 50px;
    font-weight: 600;
}

label {
    font-size: 30px;
    font-weight: 300;
}