@import '../mixins';

.meeting-wrapper {
  .zoom-user-form{
    margin-top: 50px;
  }
    .back-btn {
      padding: 8px 20px;
      background-color: #2D8CFF;
      color: #fff;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      span{
        margin-right: 5px;
      }
  
      &:hover {
        background-color: #0E00DC;
      }
    }
  
    .title {
      font-size: 24px;
      margin-top: 35px;
      color: #333;
      font-weight: 700;
      margin-bottom: 0;
    }
  
    .meeting-platform-wrapper {
      margin-top: 40px;
  
      label {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 10px;
        margin-right: 10px;
      }
  
      .choice-meeting-platform {
        width: 200px;
        padding: 3px 10px;
        font-size: 16px;
        border: 1px solid #ddd;
        border-radius: 8px;
        background-color: #fff;
        transition: border-color 0.3s ease, width 0.3s ease;
        margin-top: 5px;
        height: 40px;
  
        &:hover,
        &:focus {
          border: 1px solid #997eff;
          box-shadow:none;
          outline: none;
        }
      }
    }

    @include respond-to('four_hundread') {
      .meeting-platform-wrapper {

        label {
          display: inline-block;
        }
    
        .choice-meeting-platform {
          width: 100%;
          height: 50px;
        }
      }
    }
  
    // Add some bottom space
    margin-bottom: 40px;
  }
  