body {
    background-color: #e5e5e5e5;
}
.sign-up-logo {
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.text-blue {
    color: #173147;
}
.sign-form {
    background-color: #fff;
    border-radius: 6px;
    padding: 30px;
}
.btn-full {
    width: 100%;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 800;
    padding: 0px 30px;
    line-height: 48px;
}
.items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
.items li {
    padding: 0px 0px 0px 30px;
    position: relative;
    display: table;
    font-size: 18px;
    font-weight: 600;
    color: #173147;
}
.items li::before {
    content: "\f00c";
    font-size: 18px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0px;
    color: #291fbc;
}
.main-details{
    color: #777;
    font-size: 16px;
}
.sub-details {
    color: #6c757d;
    font-weight: bold;
}

.mobile-input {
    display: flex;
}

.mobile-input select {
    margin-right: 5px;
}


.url-input {
    display: flex;
    align-items: center;
}

.url-input span {
    /* background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
    padding: 10px;
    margin-right: -1px;
    white-space: nowrap; */

}

.url-input input {
    border-radius: 0 5px 5px 0;
    flex: 1;
}

.password-input {
    display: flex;
    align-items: center;
    position: relative;
}

.password-input input {
    flex: 1;
}

.password-input .toggle-password {
    position: absolute;
    right: 10px;
    cursor: pointer;
}

p {
    text-align: center;
}

p a {
    color: #0066cc;
    text-decoration: none;
}

p a:hover {
    text-decoration: underline;
}
@media (min-width: 768px) {
    .vh-md-100 {
      height: 100vh !important;
    }
  }
