/* Style your form here */
body {
    font-family: monospace;
    margin: 0;
    padding: 0;
    background-color: #151624;
    color: azure;
}

form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

fieldset {
    margin-bottom: 20px;
    border: 1px solid #444;
    border-radius: 8px;
}

legend {
    font-weight: bold;
    color: azure;
    padding: 0 10px;
}

label {
    display: inline-block;
    margin-bottom: 5px;
    vertical-align: middle;
}

input[type="text"],
input[type="number"],
select {
    width: 100%;
    padding: 8px;
    margin-top: 3px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    background-color: #2a2b3d;
    color: white;
}

button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    float: right;
}

button:hover {
    background-color: #45a049;
}

/* Switch toggle styles */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    margin-right: 10px;
    vertical-align: middle;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #4CAF50;
}

input:focus + .slider {
    box-shadow: 0 0 1px #4CAF50;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

/* Custom server options */
#customServerOptions {
margin-left: 20px;
}

#learnMore {
background-color: #007bff;
color: white;
padding: 10px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
}

#learnMore:hover {
background-color: #0056b3;
}

#welkam {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 50px;
background-color: rgba(0, 0, 0, 0.9);
text-align: center;
border-radius: 10px;
z-index: 1000;
cursor: pointer;
}

/* Radio button styling */
input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    vertical-align: middle;
}

.was-validated input:invalid,
.was-validated input[required]:invalid {
    border-color: #dc3545;
}

.was-validated input:valid,
.was-validated input[required]:valid {
    border-color: #28a745;
}

#bypassAgeverifyOptions input,
#THRCheckerOptions input {
margin-bottom: 10px;
}
