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

body {
    background: pink;

}


.title {
    color: RED;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    height: 100px;
}


.input-group {
    display: flex;
    gap: 20px;
}




select {

    padding: 10px;
    border-radius: 10px;
    border: none;
    width: 250px;
    background: black;
    color: white;
}

option {
    color: white;
}


.form-contr {
    width: 200px;
    height: 40px;
    font-size: 15px;
    display: flex;
    justify-content: center;
    margin: auto;
    background: #f8cfc3;
    border-radius: 15px;
    border: none;
}



.form-btn {
    background: red;
    border-radius: 15px;
    border: none;
    padding: 10px 20px;
    color: white;
}











.card {
    background: linear-gradient(145deg, #f3c3c3, #e6a9a9);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    color: #fff;

}


.title {
    font-weight: bold;
    font-size: 16px;
}

.subtitle {
    font-size: 13px;
    margin-top: 5px;
}