* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: #ebeef1;
}

.login-form {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 450px;
    background: #ebeef1;
    padding: 20px 30px;
    box-shadow: -3px -3px 7px rgba(10, 99, 169, 0.16),
                 2px 2px 5px rgba(255, 255, 255, 0.70);
}

.login-form .form-title {
    font-family: 'Lato', sans-serif;
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    margin: 20px 0px 30px;
    color: #333;
}

.login-form .form-input {
    margin: 10px 0px;
}

.login-form .form-input .subtitle {
    font-size: 12px; /* Adjust the font size */
    color: #666; /* Subtle text color */
    margin-bottom: 10px; /* Add spacing below */
    font-style: italic; /* Optional: make the text italic */
}

.login-form .form-input label,
.login-form .captcha label {
    display: block;
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
}

.login-form .form-input input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ebeef1;
    font-size: 15px;
    outline: none;
    background: #ebeef1;
    box-shadow: inset 5px 5px 10px #bebebe, inset -5px -5px 10px #ffffff;
}

.login-form .captcha {
    margin: 15px 0px;
}

.login-form .captcha .preview {
    color: #555;
    width: 100%;
    text-align: center;
    height: 40px;
    line-height: 40px;
    letter-spacing: 8px;
    border: 1px solid #ebeef1;
    font-family: "monospace";
    background: #ebeef1;
    box-shadow: 1px 1px 2px rgba(10, 99, 169, 0.16),
                 -1px -1px 2px rgba(255, 255, 255, 0.70);
    /* box-shadow: inset 5px 5px 10px #bebebe, inset -5px -5px 10px #ffffff; */
}

.login-form .captcha .preview span {
    display: inline-block;
    user-select: none;
}

.login-form .captcha .captcha-form {
    display: flex;
}

.login-form .captcha .captcha-form input {
    width: 100%;
    height: 40px;
    border: 1px solid #ebeef1;
    font-size: 15px;
    /* margin-top: 30px; */
    padding: 10px;
    /* border: 1px solid #888; */
    outline: none;
    color: #333;
    background: #ebeef1;
    box-shadow: inset 5px 5px 10px #bebebe, inset -5px -5px 10px #ffffff;
}

.login-form .captcha .captcha-form .captcha-refresh {
    /* margin-top: 30px; */
    width: 40px;  /* Adjusted width */
    height: 40px;
    border: none;
    outline: none;
    background: #4c81ff;  /* Change the background color for visibility */
    color: #fff;  /* Text color */
    cursor: pointer;
    display: flex;  /* Center the icon */
    align-items: center;  /* Center the icon vertically */
    justify-content: center;  /* Center the icon horizontally */
    box-shadow: 2px 2px 5px rgba(57, 169, 255, 0.16),
    -5px -5px 10px rgba(236, 232, 232, 0.7);
}

.login-form #submit-btn {
    margin-top: 5px;
    width: 100%;
    padding: 10px;
    border: none;
    outline: none;
    font-size: 15px;
    text-transform: uppercase;
    background: #4c81ff;
    color: #fff;
    cursor: pointer;
    box-shadow: 2px 2px 5px rgba(57, 169, 255, 0.16),
    -5px -5px 10px rgba(52, 108, 190, 0.7);
}
select {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 1px;
    font-size: 1rem;
    background: #ebeef1;
    color: #333;
    box-shadow: inset 5px 5px 10px #bebebe, inset -5px -5px 10px #ffffff;
    outline: none;
    cursor: pointer;
    appearance: none; /* Removes default browser styling */
    -webkit-appearance: none; /* For Safari */
    -moz-appearance: none; /* For Firefox */
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23333" width="16px" height="16px"><path d="M7 10l5 5 5-5H7z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
}

select:focus {
    outline: none;
    box-shadow: inset 5px 5px 10px #bebebe, inset -5px -5px 10px #ffffff, 0 0 3px rgba(0, 123, 255, 0.5);
}

option {
    background: #ebeef1;
    color: #333;
}
