
* {
    padding: 0px;
    margin: 0px;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

.login {
    width: 600px;
    height: 300px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background: #fff;
    display: none;

}

.form-body {
    width: 900px;
    background-color: #fff;
    border-right: 5px;
}

.form-holder {
    display: flex;
}

.form-image {
    width: 100%;
    height: 100%;
    flex: 6;
    background-color: #f8f8ff;
}

.form-image img {
    display: block;
    width: 100%;
    height: 100%;
}

.form-content {
    flex: 4;
    padding: 30px 60px !important;
}

.website-logo-inside h1 {
    font-size: 20px;
    margin-top: 10px;
}

.other-links {
    left: 43%;
}

.button-container {
    cursor: pointer;
    line-height: 35px;
    padding-left: 10px;
}

.ibtn {
    border: none;
    background: none;
    color: #1071b3;
}

.modal1 {
    top: 5%;
}

.form-section {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.form-section h6 {
    margin-top: 0;
}
.ibtns {
    border: none;
    cursor: pointer;
    position: relative;
    display: inline-block;
}

.tooltip {
    visibility: hidden;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    width: 200px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    /* 位置调整 */
    left: 50%;
    margin-left: -60px;
    /* 使工具提示居中 */
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    /* 工具提示箭头 */
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.ibtns:hover .tooltip {
    visibility: visible;
    opacity: 1;
}
