.title {
    background-image: url('./assets/head.webp');
    height: 200px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.title>h4 {
    color: white;
    font-weight: bolder;
}

.main-container {
    background-color: #333333;
    /* height: 100dvh; */
}

.info>h5 {
    color: #fea500;
    font-weight: bolder;
    text-transform: uppercase;
}

.info>.divider {
    background-color: white;
    height: 2px;
}

.info>.buttons img {
    height: 50px;
    width: 50px;
}

.info>.buttons .ok-btn {
    color: #fea500;
    font-weight: bolder;
    font-size: 20px;
    text-transform: uppercase;
}

input {
    text-align: center;
    font-weight: bold;
    font-size: 22px;
    color: #b3b3b3;
}

input::placeholder {
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    color: #b3b3b3;
}

/* Media Query for Laptops Only */
@media (min-width: 1024px) {
    .title {
        height: 400px;
    }
    .title > h4 {
        font-size: 50px;
    }

    .form, .info{
        padding: 0px 10%;
    }
}

.cursor {
    cursor: pointer;
}