
.form-border {
    background-color: #FFF7E3;
    padding: 20px;
    border: 1px solid black;
    }
    
    /* Form */
    .form {
    border: 1px solid black;
    background-color: #ED1D24;
    padding: 17px 20px;
    color: white;
    width: 530px;  /* Desktop size */
    border-radius: 4px;
    }
    
    /* Labels */
    label {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    margin-left: 10px;
    }
    
    /* Form Heading */
    .tab-content h1 {
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 1rem;
    }
    
    /* Input Fields */
    input {
    font-size: 1rem;
    display: block;
    width: 95%;
    border: none;
    height: 2.5rem;
    /* background-color: #dd7272; */
    padding: 12px 18px;
    border-radius: 50px;
    color: #000000;
    }
    
    /* Input Hover */
    .form input:hover {
    background-color: white;
    }
    
    /* Textarea */
    textarea {
    font-size: 1rem;
    display: block;
    border: none;
    /* background-color: #99BDFF; */
    padding: 15px 20px;
    border-radius: 50px;
    color: black;
    resize: vertical;
    width: 100%;
    }
    
    /* Textarea Hover */
    .form textarea:hover {
    background-color: white;
    }
    
    /* Form Fields Wrapper */
    .field-wrap {
    position: relative;
    margin-bottom: 30px;
    }
    
    /* Form Button */
    .form-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    }
    
    
    /* Top Row (Two Inputs Side by Side) */
    .top-row {
    &:after {
        content: "";
        display: table;
        clear: both;
    }
    }
    label {
    margin-bottom: 3px !important;
    margin-top: 10px;
    }
    .top-row > div {
    float: left;
    width: 48%;
    margin-right: 4%;
    }
    
    .top-row > div:last-child {
    margin: 0;
    }
    
    /* Forgot Password Text */
    .forgot {
    margin-top: -20px;
    text-align: right;
    }
    
    
    /* Mobile Fix for form */
    @media (max-width: 768px) {
    .top-row > div {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
    .form-border{
      padding: 10px 10px ;
      margin: 20px 10px;
    }
    .main-form{
      height: auto;
    }
    }
    
    
    @media (max-width: 768px) {
    input,
    textarea {
        width: 100%;  
        font-size: 0.8rem;
    }
    }
    
    @media (max-width: 768px) {
    .form {
        width: 100%;  
    }
    }