body {
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: sans-serif;
}

.form-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    width: 100%;
    max-width: 600px;
}

.form-container h1 {
    font-weight: 300;
    color: #333;
}

.form-control {
    border-radius: 0;
    padding: 10px 15px;
    border: 1px solid #ccc;
}

.form-control:focus {
    box-shadow: none;
    border-color: #e41e26;
}

.btn-apply {
    background-color: #fff;
    color: #e41e26;
    border: 1px solid #e41e26;
    border-radius: 0;
    padding: 10px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-apply:hover {
    background-color: #e41e26;
    color: #fff;
}
