body {
    height: 100%;
    background-image: url(img/star.png);
}

.global-container{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dceddc;
}

.login-form{
    width: 380px;
    height: 450px;
    padding: 20px;
    background-color: rgba(34, 45, 50, 0.8);
    border-radius: 10px !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

input[type="text"],
input[type="password"] {
    background: #2f374b;
    color: #fff;
    border: 2px solid #617efd;
    border-radius: 10px;
    margin-bottom: 25px;
}

input[type="text"]:focus,
input[type="password"]:focus {
    outline: none;
    border: none;
    background: #1a2236;
    color: #707375;
    margin: 0;
}

.card-title {
    font-weight: 900;
    padding-top: 20px;
}

.card-text .input-box{
    position: relative;
    width: 100%;
    height: 50px;
    margin: 30px 0;
}

.input-box input{
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border: 2px solid rgba(60, 165, 194, 0.2);
    border-radius: 40px;
    font-size: 16px;
    color: #0073a4;
    padding: 20px 45px 20px 20px;
}

.input-box input::placeholder{
    color: #0073a4;
  }

  .input-box i{
    position: absolute;
    right: 20px;
    top: 30%;
    transform: translate(-50%);
    font-size: 20px;
  }

.btn {
    background: #3b83cb !important;
    color: #000 !important;
    transform: translateY(10px);
    font-size: 14px;
    border-radius: 10px !important;
    display: block;
    width: 100%;
    margin: 10px auto;
}

.d-grip-gap-2 {
    text-align: center;
}