body {
    background: #fff;
    font-size: 16px;
    line-height: 1.5;
    font-family: "Roboto Condensed", Arial, sans-serif;
    color: #555;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
h2 {
    font-size: 24px;
    color: #222;
    font-weight: 700;
}
p.lead {
    font-weight: 400;
    font-size: 18px;
    color: #333;
    margin-bottom: 35px;
}
.form-group label {
    font-weight: 700;
    color: #222;
    display: block;
}
.form-check-inline {
    display: flex;
    justify-content: space-between;
}
.form-check-inline .form-check {
    flex: 1;
    margin-right: 10px;
}
.form-check-inline .form-check:last-child {
    margin-right: 0;
}
.form-check label {
    border: 2px solid #e8ebed;
    display: block;
    font-weight: 400;
    padding: 15px;
    box-sizing: content-box;
    border-radius: 5px;
    cursor: pointer;
    color: #555;
    background-color: #fff;
    text-align: center;
}
.form-check input[type="radio"] {
    display: none;
}
.form-check input[type="radio"]:checked + label {
    border-color: #ffcc33;
    background-color: #f0f8ff;
}
input.form-control {
    background: none;
    background-color: #fff;
    border: 2px solid #e8ebed;
    border-radius: 5px;
    box-shadow: none;
    transition: none;
    color: #999;
    height: 44px;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 25px;
    padding: 6px 12px;
}
input.form-control:focus {
    border-color: #ffcc33;
    outline: 0;
    box-shadow: none;
    color: #555;
}
.container {
    max-width: 600px;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
