body {
    font-family : 游ゴシック;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.otp-container {
    width: 700px;

    padding: 15px 30px 15px 30px;
    border-radius: 20px;
    border: 1px solid #bfbfbf;
}

h2 {
    text-align: center;
    margin: 30px;
}

p {
    text-align: center;
    margin: 35px 0px 35px 0px;
    font-size: 15px;
    font-weight: bold;
    color: #595959;
    letter-spacing: 1.2px;
}

.otp-email-div {
    text-align: center;
    margin: 50px 0px 50px 0px;
    font-size: 16px;
    font-weight: bold;
    color: #000000;
}

.otp-div, .otp-buttons-div{
    display: flex;
    justify-content: center;
}

.otp-buttons-div{
    margin: 30px 0px 30px 0px;
}

img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px;
}

.modal-content img {
    width: 150px;
}

.submit-button {
    background-color: #5b9bd5;
    color: #fff;
    border: 0px;
    width: 15%;
    text-decoration: none;
}

.submit-button:hover {
    background-color: #0056b3;
}

.submit-button, .resend-button {
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    text-align: center; /* Center the text within the button */
    margin: 5px 20px 5px 20px;
    height: 20%;
}

.resend-button {
    background-color: #f2f2f2;
    color: #000000;
    border: 1px solid #5b9bd5;
    width: 25%;
}

.resend-button:hover {
    background-color: #FFFFFF;
}

.link-div {
    text-align: right; /* Align the link to the right */
    margin-top: 20px;
    font-size: 11px;
    font-weight: bold;
}

.link-div a {
    color: #4472c4 !important;
}


.otp-field {
    width: 40px;
    height: 50px;
    margin: 4px;
    border: 1px solid #b4c7e7;
    border-radius: 5px;
    text-align: center;
    font-size: 20px;
    color: #7f7f7f;
}

.input-container {
    display: flex;
    flex-direction: column;
    margin: 15px 0;
    position: relative;
}

.forgot-pwd-div {
    margin-top: 10px;
    margin-bottom: 20px;
    display: inline;
    text-align: center;
}

.input-group {
    margin: 1.2% 0 0 4%;
}

.inline-disp {
    display: inline-block;
}

.formLabel {
    display: flex;
    font-weight: bold;
    margin: 2px 1px 4px 0px;
}

.pwd-textbox {
    height: 37px;
    border: 1px solid #589AD0;
    border-radius: 5px;
    padding-left: 5px;
    width: 300px;
}

.pwd-btn-div {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.pwd-btn {
    display: flex;
    border-radius: 27px;
    height: 39px;
    border: 1px solid #bac4cb;
    margin-left: 30px;
    background-color: #5B9BD5;
}

.pwd-text {
    font-family: '游ゴシック';
    font-size: 17px;
    color: white;
    text-align: center;
    font-weight: bold;
    letter-spacing: 1.2px;
    margin: 3px 5px;
    margin-right: 9px;
}

.circle-arrow {
    width: 24px;
    height: 24px;
    margin-top: 5px;
}

@media (max-width: 480px) {
    .otp-container {
        width: 90%; /* Adjust the container width for small screens */
    }

    .input-container input {
        padding-left: 50px; /* Reduce the left padding for small screens */
    }
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 200px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 0px;
    width: 32%;
}

/* The Close Button */
.close {
    color: #000;
    float: right;
    font-size: 40px;
    margin-top: -20px;
    margin-right: -5px;
}

.close:hover,
.close:focus {
    color: #aaaaaa;
    text-decoration: none;
    cursor: pointer;
}