@media (max-width: 900px) {
    .sidebar {
        display: none;
    }
    
    .form {
        width: 100%;
        left: 0;
        right: auto;
        max-width: none;
    }
    
    .content {
        position: relative;
        max-width: none;
        margin: 32px 16px;
        width: calc(100% - 32px);
    }
    
    .content:before {
        display: block;
        content: 'Новая заявка';
        border-bottom: 2px solid #e3e2e1;
        padding: 14px 0 12px;
        font-size: 18px;
        line-height: 20px;
        font-weight: bold;
    }
    
    .content:after {
        content: '';
        display: block;
        position: absolute;
        top: 45px;
        left: 0;
        height: 3px;
        width: 121px;
        background: #000;
    }
    
    .form-title {
        font-size: 32px;
        font-style: normal;
        font-weight: 800;
        line-height: 36px;
    }
    
    .form-description {
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
		margin-top: 16px;
    }
    
    .form-label {
        font-size: 16px;
        font-style: normal;
        font-weight: 800;
        line-height: 20px;
    }
    
    .form-input {
        font-size: 13px;
        width: calc(100% - 32px);
        margin-top: 8px;
    }
    
    .button-wrapper {
        gap: 8px;
        width: 100%;
    }
    
    .form-secondary-button {
        width: 100%;
        font-size 15px;
        text-align: center;
    }
    
    .form-button {
        font-size 15px;
        width: 100%;
        text-align: center;
    }
    
    .close-link {
        top: 8px;
        right: 8px;
    }
    
    .close-icon {
        width: 24px;
        height: 24px;
    }
}

@media (min-width: 900px) and (max-width: 1350px) {
    .info {
        right: 32px;
    }
    
     .content {
        margin-left: 32px;
     }
     
     .form-input {
        width: calc(100% - 32px);
     }
}
