body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.root-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
}

.root-info {
    min-width: 30vw!important;
    max-width: 80vw!important;
}

.root-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.root-container input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.root-container button {
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    box-sizing: border-box;
}

.root-container button:hover {
    background-color: #45a049;
}

.root-container .forgot-footer {
    text-align: center;
    margin-top: 10px;
}

.root-container .forgot-footer a {
    color: #007bff;
    text-decoration: none;
}

.root-container .forgot-footer a:hover {
    text-decoration: underline;
}

.captcha-container {
    display: flex;
    align-items: center;
}

.captcha-container input {
    flex: 1;
    margin-right: 10px;
    padding: 10px;
    box-sizing: border-box;
}

.captcha-container button {
    padding: 10px;
    cursor: pointer;
    width: auto;
    min-width: 80px;
    max-width: 120px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    transition: background-color 0.3s;
    height: 100%;
}

.root-container button {
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    box-sizing: border-box;
}

.root-container button:hover {
    background-color: #45a049;
}

.captcha-container img {
    padding: 10px;
    cursor: pointer;
    width: auto;
    min-width: 80px;
    max-width: 120px;
    color: white;
    border: none;
    transition: background-color 0.3s;
    height: 100%;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.table-group {
    margin-top: 5px;
}