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

body {
    display: flex;

    justify-content: center;
    align-items: center;
    min-height: 100vh;

    background: #f3c571;
    font-family: Arial, sans-serif;
}

.continer {
    width: 400px;
    background: #fff;
    padding: 25px;

    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

h1 {
    text-align: center;
    margin-bottom: 20px;

    color: #333;
}

.s2 {
    width: 100%;
}

p {
    margin-bottom: 8px;

    color: #444;
}

input {
    width: 100%;
    height: 40px;
    padding: 10px;
    border: 1px solid #ccc;

    border-radius: 6px;
    outline: none;

    margin-bottom: 20px;
}

.box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.to,
.form {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 6px;
    

}

img {
    width: 40px;
    margin-bottom: 8px;
    border-radius: 100%;
    
}

.arr {
    width: 30px;
}

select {
    width: 100px;
    height: 40px;
    border: none;
    
    outline: none;
}

button {
    width: 100%;
    height: 40px;
    border: none;
    border-radius: 6px;
    background: #f3c571;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background: #e3b04d;
}

.msg {
  width: 100%;
  margin: 20px 0;
  padding: 10px;
  text-align: center;

   font-size: 18px;
   color: #333;
   background-color: #f8f8f8;
   border: 1px solid #ddd;
   border-radius: 6px;


}


.subtitle{
    text-align:center;
    color:#666;
    font-size:14px;
    margin-bottom:20px;
    line-height:1.5;
}

label{
    display:block;
    margin-bottom:8px;
    color:#444;
    font-weight:600;
}

button{
    transition:.3s;
}

input:focus,
select:focus{
    border:1px solid #f3c571;
}

@media (max-width:450px){

    .continer{
        width:95%;
    }

    .box{
        gap:10px;
    }

    select{
        width:80px;
    }

}


