*{
  font-size: 0.9rem; 
  font-family: 'Roboto', sans-serif;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .label {
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
  }
  
  .input-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .input, .select{
    flex: 1;
    padding: 10px;
    border: none;
    border-bottom: 2px solid #ccc;
    background-color: #f9f9f9;
    outline: none;
    transition: border-bottom-color 0.3s ease;
  }
  
  .input:focus ,.select:focus {
    border-bottom-color: #333;
  }
  
  .hint {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
  }
  
  .btn-one-time {
    padding: 10px;
    margin-left: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 123, 255, 0.5); /* 연한 그림자 */
    cursor: pointer;
    transition: box-shadow 0.3s ease;
  }
  
  .btn-one-time:hover  {
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.7); /* hover 시 그림자 강조 */
  }
  
  .btn-reset ,.btn-Login {
    width: 100%;
    padding: 10px;
    background-color: black;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .btn-reset:hover,.btn-Login:hover {
    background-color: white;
    color: black;
    border: 1px solid black;
  }
  @media (max-width: 1000px) {
  
    .btn-one-time {
    margin-left: 5px;
    min-height: 40px ;
  }
  input{
    height: 40px!important;
  }
  
  }