html{
	height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
body {
    font-family: Arial, sans-serif;
    background: #ffba50;
    padding: 30px;
}
.form-container {
    background: #ffe6c0;
    padding: 30px;
    max-width: 400px;
    margin: auto;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
label {
	font-weight: 600;
    display: block;
    margin-top: 15px;
}
input {
    display: block;
    width: 100%;
    padding: 0.3rem 0.5rem;
    margin-top: 8px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    background-clip: padding-box;
    border: #dee2e6;
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
button {
	border-radius: 0;
    margin-top: 20px;
    padding: 10px;
    width: 100%;
    background: #ff9600;
    color: #fff;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #474747;
}

.success {
    background: #d4edda;
    padding: 10px;
    margin-top: 10px;
    color: #155724;
    border-left: 4px solid #28a745;
}
.error {
    background: #f8d7da;
    padding: 10px;
    margin-top: 10px;
    color: #721c24;
    border-left: 4px solid #dc3545;
}
.hidden {
    display: none;
}

#licenseForm{
	overflow: hidden;
}