*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: transparent;
}

h1 {
    font-size: clamp(1.4rem, 5vw, 2rem);
}

.h5{
    font-size: 1rem;
    font-weight: 700;
    font-style: italic;
}

h6 {
    font-size: 1.1rem;
    color: #db372d;
}

span {
    color: #db372d;
}

/* main cantainer  */

.main-container {
    margin: 0 27%;
    padding: 20px 0;
    background: transparent;
}

.banner {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.banner img {
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.top-header {
    border: 1px solid #ccc;
    border-top: 8px solid rgb(240, 154, 140);
    border-radius: 12px;
    padding: 15px 15px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.top-header h5 {
    border-bottom: 1px solid #ccc;
    padding-bottom: 13px;
    font-style: italic;
}

form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-top: 25px;
}

.detail {
    width: 100%;
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 12px;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail label {
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
}

.detail input {
    width: 50%;
    outline: none;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 9px;
}

.buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.buttons .sub-btn {
    background: #db372d;
    padding: 9px 20px;
    border: none;
    cursor: pointer;
    color: #fff;
    border-radius: 9px;
    font-size: 1.1rem;
}

.buttons .clear-btn {
    border: none;
    border-bottom: 1px solid #db372d;
    font-size: 1.1rem;
    background: transparent;
    color: #db372d;
    cursor: pointer;
}



@media (max-width: 571px) {

    .main-container {
        margin: 0;
        padding: 12px;
        width: 100%;
    }
    
}