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

.container, .logo div {
    width: 100%;
    max-width: 400px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}

.logo {
    margin-bottom: 20px;
    display: block !important;
}

.logo img {
    max-width: 150px;
}

h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

a {
    color: #40B7AD;
    font-weight: bold;
    text-decoration: none;
}

.small-link {
    font-weight: normal;
    font-size: 12px;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: #7D8282;
    margin-bottom: 5px;
}

.form-group input {
    width: 90%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.form-group input:focus {
    outline: none;
    border-color: #5f9ea0;
}

.form-group .password-eye {
    position: relative;
}

.form-group .password-eye input {
    padding-right: 30px;
}

.form-group .password-eye span {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #aaa;
}

.form-button {
    display: block;
    width: 95%;
    padding: 10px;
    font-size: 16px;
    background: #ffcd00;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.form-button:hover {
    background: #e6b800;
}

.multi-btn button{
    width: auto;
    min-width: 0;
    display: inline-block;
}

.cancel-button {
    background-color: #FFFFFF;
    border: 1px solid #ddd;
    color: #bbb;
    font-weight: bold;
}

.cancel-button:hover {
    background-color: #fff3c2;
}

.footer {
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.footer a {
    color: #5f9ea0;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}
.clear {
    clear: both;
}