body { 
    margin: 0 !important;
    background:#f7f7f7; 
}

.form{
    width: 100%;
    position: relative;
}
.layout { 
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 5.5rem; 
    padding: 14px;
}

p{
    max-width: 600px;
}

h1{
    color: var(---colorOnSecondary);
    font-weight: normal;
    margin-bottom: .5rem;
}
.layout .view{
    max-width: 550px; 
    background:#fff; 
    padding: 1.5rem 16px; 
    border-radius:12px; 
    box-shadow:0 10px 25px rgba(0,0,0,.08); 
    margin-top: 2rem;
}
h2 { margin-bottom:18px; }
label { 
    color: var(---textColor);
    display:block;
    margin:16px 0 10px; 
    font-weight:600; 
}
input, select {
    width:100%;
    height: 44px; 
    padding: 0 14px;
    border:1.3px solid #ccc; 
    border-radius:6px; 
}

/* Global focus style for inputs */
input:focus,
select:focus,
textarea:focus {
  border-width: 1.5px;
  outline: none;                 /* removes default browser outline */
  border-color: #3B82F6;         /* custom border color */
  box-shadow: 0 0 0 2px #3b82f633; /* subtle focus ring (optional) */
  transition: border-color .2s, box-shadow .2s;
}


.vehicle-types { 
    display:flex; 
    flex-wrap:wrap; 
    gap:10px; 
    margin-top: 14px;
}
.type{
    display: flex;
    align-items: center;
    height: 44px;
    padding: 0 10px;
    border-radius: 6px;
    border:1.2px solid #cccccc64; 
    width: 30%;
}

.type input{
    max-width: 20px;
}
.vehicle-types label {
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:500; 
}
button { 
    margin-top:18px; 
    height: 44px;
    margin-bottom: 2rem;
    width:100%; 
    border:none; 
    background:#0077ff; 
    color:#fff; 
    border-radius:40px; 
    font-size:15px; 
    cursor:pointer; 
}
button:hover { 
    opacity:.9; 
    border: none;
}
.disclaimer {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    font-weight: normal;
    margin-top: 1.5rem;
    font-size: 13px;
    line-height: 1.4;
}

.disclaimer a {
text-decoration: underline;
}

@media screen and (min-width:1024px){
  p{
    max-width: 500px;
    text-align: center;
    }

    .layout .view{
        padding: 2rem;
    }
 
}
