body {
    font-family: Arial, sans-serif;
    background-color: #e3eded;
    margin: 0;
    padding: 20px;
}

.logo {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

#altomate-view,
#varify-view {
    border: 2px solid #ccc;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.radio-container {
    display: flex;
    gap: 0px;
}

.container {
    max-width: 500px;
    margin: 0 auto;
    padding: 80px 100px;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.login-group {
    border: 2px solid #ccc;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.radio-container label {
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding-left: 30px;
    margin-right: 20px;
}

.radio-container input[type="radio"] {
    display: none;
}

.radio-button {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: auto;
    padding: 0px;
    background-color: #ffffff;
    border: 0px solid #ffffff;
    border-radius: 5px;
}

.radio-label {
    line-height: 20px;
    color: #000;
    padding: 5px;
    border: 1px solid #838383;
    border-radius: 5px;
}

.radio-container input[type="radio"]:checked + .radio-button + .radio-label {
    background-color: #75abda;
    border-color: #403838;
    border: 1px;
    color: #ddeffd;
}

.trim-input-container {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding-top: 10px;
    padding-left: 10px;
    margin-bottom: 20px;
    margin-top: 10px;
}

[type=radio] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

[type=radio] + img {
    cursor: pointer;
}

[type=radio]:checked + img {
    outline: 2px solid rgb(105, 105, 105);
}

.vert-align-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1 {
    color: #333;
    text-align: center;
}

h2 {
    text-align: center;
    font-size: 18px;
    margin-top: 10px;
    color: #333;
    font-weight: bold;
}

h3 {
    text-align: center;
    font-size: 24px;
    margin-top: 40px;
    color: #333;
    font-weight: bold;
}

p {
    text-align: center;
    font-size: 12px;
    margin-bottom: 10px;
    color: #666;
}

a {
    color: #337ab7;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #235a96;
    text-decoration: underline;
}

form {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    font-weight: bold;
    color: #333;
}

.radio-container-program {
    display: flex;
    gap: 100px;
    padding-left: 80px;
}

.text-container {
    border: 2px solid #337ab7;
    border-radius: 5px;
    padding: 20px;
    margin-top: 20px;
    background-color: #f8f9fa;
}

.account-info-text-container {
    border: 2px solid #f69e52;
    border-radius: 5px;
    padding: 10px;
    margin-top: 0px;
    margin-bottom: 20px;
    background-color: #ffffff;
}

.text-under-submit {
    text-align: center;
    font-size: 16px;
}

.text-under-submit p {
    margin-bottom: 10px;
}

.reference-list {
    list-style-type: disc;
    margin-left: 20px;
}

.reference-list li {
    font-size: 14px;
    margin-bottom: 5px;
}

.reference-list a {
    text-decoration: none;
    color: #337ab7;
}

.reference-list a:hover {
    text-decoration: underline;
}

input[type="email"],
input[type="password"],
input[type="tumor-id"],
input[type="normal-id"],
input[type="cut-input"],
input[type="adapter-input"] {
    width: 80%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input[type="cut-input"] {
    width: 30%;
}

.text-center {
    text-align: center;
}

small.error-message {
    color: red;
    font-size: 12px;
    margin-top: 20px;
}

input[type="radio"],
input[type="checkbox"] {
    margin-right: 5px;
}

input[type="submit"] {
    background-color: #337ab7;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #286090;
}