#app {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

@media (max-width: 400px) {
    .login-container {
      width: 100%;
    }
}

.logo-box {
    width: 150px;
    height: 100px;
    max-width: 400px;
    padding: 13px;
    background-color: var(--primary--primary-700);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4); 
    margin-top: 30px;
    margin-bottom: -30px;
    z-index: 16;
    display: flex;
}

.login-container {
    width: 350px;
    height: 250px;
    max-width: 400px;
    padding: 20px;
    padding-top: 40px;
    margin: 30px;
    margin-top: 0;
    background-color: #ccc;
    border-radius: 8px;
    z-index: 15;
    transition: height 0.3s cubic-bezier(0.04, 0.69, 0.59, 1);
}

.login-button.first-page-button {
    margin-top: 17px;
    margin-bottom: 0px;
}

.login-container.code {
    overflow: hidden;
    height: 350px;
}

.login-button {
    width: 60%;
    position: relative;
    display: flex;
    justify-content: center;
    background-color: #ddd;
    margin: auto;
    margin-bottom: 30px;
    border-radius: 999px;
    padding: 5px 10px;
    cursor: pointer;
}

.digit-div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px !important;
    height: 50px !important;
    height: 50px;
    border-radius: 50%;
    background-color: #ddd;
    color: black;
    text-align: center;
}

.code-box.focus .digit-div{
    border: #eee 2px solid;
}

.code-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px auto;
}

.code-box.focus {
    border: 0;
    outline: none   ;
}

.code-text {
    text-align: center;
    font-size: 16px;
    color: black;
}

.number-field {
    width: 100%;
    padding: 13px;
    border-radius: 999px;
    border: 0;
    font-size: 16px;
    background-color: #ddd;
}

.number-box {
    position: relative;
    margin: 20px 0;
}

.number-box label {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(8px);
    background-color: transparent;
    padding: 0 5px;
    color: black;
    font-size: 16px;
    pointer-events: none;
    transition: 0.2s ease all;
}

.number-box label.active {
    transform: translateY(-15px);
    top: -1px;
    left: 18px;
    font-size: 12px;
    border-radius: 999px;
}

.v-select {
  background-color: #ddd; /* dış kapsayıcı koyu */
  border-radius: 999px; /* tam yuvarlak */
  padding: 13px;
  width: 100%; /* isteğe bağlı */
  transition: border-radius 0.2s ease;
}

.v-select.vs--open {
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.v-select .vs__dropdown-toggle {
  background-color: transparent;
  border: none;
  box-shadow: none;
  color: black;
  font-weight: bold;
  padding: 0;
}

.v-select .vs__selected {
  color: black;
}

.v-select .vs__search {
  color: black;
}

.v-select .vs__open-indicator {
  fill: black;
}

.v-select .vs__dropdown-menu {
  background-color: #ddd;
  color: black;
}

.v-select .vs__dropdown-option--highlight {
  background-color: #ccc;
  color: black;
}